move sboot to the root directory
[open-ath9k-htc-firmware.git] / sboot / magpie_1_1 / sboot / buf_pool / Makefile
diff --git a/sboot/magpie_1_1/sboot/buf_pool/Makefile b/sboot/magpie_1_1/sboot/buf_pool/Makefile
new file mode 100755 (executable)
index 0000000..b3cecf1
--- /dev/null
@@ -0,0 +1,60 @@
+include $(MAGPIE_ROOT)/build/make_opt/Makefile.h
+
+
+#
+# Sub-system source main path
+#
+# !!Customize!!
+
+export SSNAME = buf_pool
+
+
+#
+# Sub-system source main path
+#
+
+export SSMPATH = $(PRJ_ROOT)/$(TARGET)/$(SSNAME)
+
+
+#
+# Sub-system object search path for GNU tool chain
+#
+# !!Customize!!
+
+export SSOBJPATH = $(PRJ_ROOT)/$(TARGET)/$(SSNAME)/obj
+
+
+#
+# Sub-system/module list at this layer
+#
+# !!Customize!!
+
+SUBDIRS = .
+
+
+#
+# Archive for this package
+#
+# !!Customize!!
+
+export L_TARGET = $(LIB_PATH)/libbuf_pool.a
+
+
+#
+# Targets
+#
+
+all:
+       for i in $(SUBDIRS) ; do $(MAKE) -C $$i -f Makefile.ss all || exit $?; done
+#      ar -rcs $(L_TARGET) `find . -name "*.o"`
+
+
+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
+