mirror of
https://github.com/YikeStone/MT7601u.git
synced 2025-08-03 19:34:08 +05:30
23 lines
451 B
Groff
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) |