X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=sboot%2Fk2_1_0%2Fram%2Fadf%2FMakefile;fp=sboot%2Fk2_1_0%2Fram%2Fadf%2FMakefile;h=eee2bb602f2e8d8aabf93e206ab53305a56e3e3d;hb=ff66305a044be28464fa0969ea2d605bb268d478;hp=0000000000000000000000000000000000000000;hpb=60b496560eec004ded92ae4dad43b3d102c6658d;p=open-ath9k-htc-firmware.git diff --git a/sboot/k2_1_0/ram/adf/Makefile b/sboot/k2_1_0/ram/adf/Makefile new file mode 100755 index 0000000..eee2bb6 --- /dev/null +++ b/sboot/k2_1_0/ram/adf/Makefile @@ -0,0 +1,61 @@ +include $(MAGPIE_ROOT)/build/make_opt/Makefile.h + + +# +# Sub-system source main path +# +# !!Customize!! + +export LAYERNAME = adf + +# +# Sub-system source main path +# + +export SSMPATH = $(MAGPIE_ROOT)/target/$(LAYERNAME) + + +# +# Sub-system object search path for GNU tool chain +# +# !!Customize!! + +# export SSOBJPATH = $(PRJ_ROOT)/build/$(TARGET)/$(LAYERNAME)/obj + + +export SSOBJPATH = $(PRJ_ROOT)/$(TARGET)/$(LAYERNAME)/obj + +# +# Sub-system/module list at this layer +# +# !!Customize!! + +SUBDIRS = . +#DIRS = net os nbuf + + +# +# Archive for this package +# +# !!Customize!! + +export L_TARGET = $(LIB_PATH)/libadf.a + + +# +# Targets +# + +all: + 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 +