Mercurial > MadButterfly
view Makefile @ 147:995ee8fd5f1a
Use local static variable to hold position array to reduce using malloc().
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Thu, 25 Sep 2008 10:10:32 +0800 |
parents | 9af23d9584d8 |
children |
line wrap: on
line source
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