diff Makefile.pmake @ 172:042580eb6e6c

Use makefile created by autoconf.
author Thinker K.F. Li <thinker@branda.to>
date Fri, 31 Oct 2008 01:01:43 +0800
parents Makefile@9af23d9584d8
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile.pmake	Fri Oct 31 01:01:43 2008 +0800
@@ -0,0 +1,22 @@
+SUBDIRS= src tools
+
+all:
+.for i in $(SUBDIRS)
+	@echo "==> Enter subdirectory $(i)"
+	@cd ${i}; $(MAKE) $@
+	@echo "<== Leave subdirectory $(i)"
+.endfor
+
+install:
+.for i in $(SUBDIRS)
+	@echo "==> Enter subdirectory $(i)"
+	@cd ${i}; $(MAKE) $@
+	@echo "<== Leave subdirectory $(i)"
+.endfor
+
+clean:
+.for i in $(SUBDIRS)
+	@echo "==> Enter subdirectory $(i)"
+	@cd ${i}; $(MAKE) $@
+	@echo "<== Leave subdirectory $(i)"
+.endfor