projects
/
invirt/packages/invirt-web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
sipb-xen -> SIPB Virtual Servers externally
[invirt/packages/invirt-web.git]
/
code
/
Makefile
diff --git
a/code/Makefile
b/code/Makefile
index
aa083e2
..
582293f
100644
(file)
--- a/
code/Makefile
+++ b/
code/Makefile
@@
-1,13
+1,11
@@
-TEMPLATES=$(wildcard *.tmpl)
-OUTPUTS=$(TEMPLATES:.tmpl=.py)
+DIRS = templates
-all: ${OUTPUTS}
-
-%.py: %.tmpl
- cheetah compile $<
-
-#${OUTPUTS}:${TEMPLATES}
-# cheetah compile $^
+all:
+ for dir in $(DIRS); do \
+ (cd $$dir; $(MAKE) all); \
+ done
clean:
clean:
- @rm -f ${OUTPUTS} *.pyo *.pyc *.py.bak
+ for dir in $(DIRS); do \
+ (cd $$dir; $(MAKE) clean); \
+ done