MT7601u/src/os/linux/Makefile.libwapi.4
Murat Demirtas 612db32659 FIXED
2016-10-30 14:40:00 +00:00

23 lines
451 B
Groff

#
# Release file for AP Mode
#
include $(RT28xx_DIR)/os/linux/config.mk
MOD_NAME = wapi_module
OBJ := $(MOD_NAME).o
WAPI_M_OBJ := \
$(RT28xx_DIR)/common/wapi_sms4.o\
$(RT28xx_DIR)/common/wapi_crypt.o
PHONY := all
all:$(OBJ)
$(MOD_NAME).o: $(WAPI_M_OBJ)
$(LD) -r $^ -o $@
# Declare the contents of the .PHONY variable as phony. We keep that
# information in a variable so we can use it in if_changed and friends.
.PHONY: $(PHONY)