Mercurial > MadButterfly
view Makefile.pmake @ 889:0a4b92e4ff75 abs_n_rel_center
Remove unused debug message
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Sun, 26 Sep 2010 14:10:00 +0800 |
parents | 042580eb6e6c |
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