source: trunk/packages/sipb-xen-www/code/Makefile @ 304

Last change on this file since 304 was 304, checked in by ecprice, 16 years ago

Fix the Makefile to recursively apply make.

File size: 155 bytes
RevLine 
[304]1DIRS = templates
[205]2
[304]3all:
4        for dir in $(DIRS); do \
5                (cd $$dir; $(MAKE) all); \
6        done
[205]7
8clean:
[304]9        for dir in $(DIRS); do \
10                (cd $$dir; $(MAKE) clean); \
11        done
Note: See TracBrowser for help on using the repository browser.