Files
sdk-hwV1.3/lichee/xr806/appos/src/wlan/Makefile
2024-05-07 18:09:20 +08:00

29 lines
665 B
Makefile
Executable File

#
# Rules for building library
#
# ----------------------------------------------------------------------------
# common rules
# ----------------------------------------------------------------------------
ROOT_PATH := ../..
include $(ROOT_PATH)/gcc.mk
ifeq ($(CONFIG_WLAN), y)
# ----------------------------------------------------------------------------
# library and objects
# ----------------------------------------------------------------------------
LIBS := libmbuf.a
DIRS := . ./mbuf
SRCS := $(sort $(basename $(foreach dir,$(DIRS),$(wildcard $(dir)/*.[csS]))))
OBJS := $(addsuffix .o,$(SRCS))
# library make rules
include $(LIB_MAKE_RULES)
endif