Mercurial > MadButterfly
view Makefile.pmake @ 1228:027187a21117
Add undo support. This is not working yet. We need to modify the MBScene_dom to handle the undo events correctly.
author | wycc |
---|---|
date | Sat, 08 Jan 2011 15:46:09 +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