include $(MAGPIE_ROOT)/build/make_opt/Makefile.h # # Sub-system source main path # # !!Customize!! export LAYERNAME = carrier_apd export SLAYERNAME = ../wlan # # Sub-system source main path # export SSMPATH = $(MAGPIE_ROOT)/$(SLAYERNAME) # # Sub-system object search path for GNU tool chain # # !!Customize!! # export SSOBJPATH = $(PRJ_ROOT)/build/$(TARGET)/$(LAYERNAME)/usb/obj export SSOBJPATH = $(PRJ_ROOT)/$(TARGET)/$(LAYERNAME)/$(SLAYERNAME)/$(SSNAME)/obj # # Sub-system/module list at this layer # # !!Customize!! SUBDIRS = . # # Archive for this package # # !!Customize!! export L_TARGET = $(LIB_PATH)/libcarrier_apd.a # # Targets # all: echo $(SSOBJPATH) echo $(SSMPATH) for i in $(SUBDIRS) ; do $(MAKE) -C $$i -f Makefile.ss all || exit $?; done dep: for i in $(SUBDIRS) ; do $(MAKE) -C $$i -f Makefile.ss dep || exit $?; done clean: $(MAKE) clean -f Makefile.ss init: $(MAKE) -f Makefile.ss init