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
Make commands work from list and info pages
[invirt/packages/invirt-web.git]
/
code
/
Makefile
diff --git
a/code/Makefile
b/code/Makefile
index
aa083e2
..
b114e86
100644
(file)
--- a/
code/Makefile
+++ b/
code/Makefile
@@
-1,13
+1,20
@@
-TEMPLATES=$(wildcard *.tmpl)
-OUTPUTS=$(TEMPLATES:.tmpl=.py)
+DIRS = templates
-all: ${OUTPUTS}
+all: kill chmod compile
-%.py: %.tmpl
- cheetah compile $<
+chmod:
+ chgrp -R invirt . 2>/dev/null || true
+ chmod -R g+w . 2>/dev/null || true
-#${OUTPUTS}:${TEMPLATES}
-# cheetah compile $^
+kill:
+ -pkill main.fcgi
+
+compile:
+ 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