Mercurial > MadButterfly
view Makefile @ 135:81c03fdd94d0
-
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Thu, 18 Sep 2008 17:12:41 +0800 |
parents | 4d2e28188460 |
children | 9af23d9584d8 |
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