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
Line 
1DIRS = templates
2
3all:
4        for dir in $(DIRS); do \
5                (cd $$dir; $(MAKE) all); \
6        done
7
8clean:
9        for dir in $(DIRS); do \
10                (cd $$dir; $(MAKE) clean); \
11        done
Note: See TracBrowser for help on using the repository browser.