Mercurial > MadButterfly
view Makefile.pmake @ 205:e91ba9e197bd
Add drag and dynamic as subdirectories in examples/Makefile.am.
- Makefile.in should not be in the repository.
- Add drag and dynamic as sub-directories of examples/ to make it while build
MadButterly, automatically.
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Wed, 10 Dec 2008 11:52:36 +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