Changeset 304
- Timestamp:
- Mar 28, 2008, 11:09:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/sipb-xen-www/code/Makefile
r236 r304 1 TEMPLATES=$(wildcard *.tmpl) 2 OUTPUTS=$(TEMPLATES:.tmpl=.py) 1 DIRS = templates 3 2 4 all: ${OUTPUTS} 5 6 %.py: %.tmpl 7 cheetah compile $< 8 9 #${OUTPUTS}:${TEMPLATES} 10 # cheetah compile $^ 3 all: 4 for dir in $(DIRS); do \ 5 (cd $$dir; $(MAKE) all); \ 6 done 11 7 12 8 clean: 13 @rm -f ${OUTPUTS} *.pyo *.pyc *.py.bak 9 for dir in $(DIRS); do \ 10 (cd $$dir; $(MAKE) clean); \ 11 done
Note: See TracChangeset
for help on using the changeset viewer.