X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/e37dd15bbf8683bab8454ea0eec8e9968ce982b2..d39b6ed13b5ba567d18a4bd0e9a3dfe67b3cc4ec:/code/Makefile diff --git a/code/Makefile b/code/Makefile index aa083e2..8ff936c 100644 --- a/code/Makefile +++ b/code/Makefile @@ -1,13 +1,16 @@ -TEMPLATES=$(wildcard *.tmpl) -OUTPUTS=$(TEMPLATES:.tmpl=.py) +DIRS = templates -all: ${OUTPUTS} +all: kill compile -%.py: %.tmpl - cheetah compile $< +kill: + wget http://xvm.mit.edu/kill.cgi -O /dev/null -nv -#${OUTPUTS}:${TEMPLATES} -# cheetah compile $^ +compile: + for dir in $(DIRS); do \ + (cd $$dir; $(MAKE) all); \ + done clean: - @rm -f ${OUTPUTS} *.pyo *.pyc *.py.bak + for dir in $(DIRS); do \ + (cd $$dir; $(MAKE) clean); \ + done