]> git.phdru.name Git - m_librarian.git/blob - views/Makefile
Docs(TODO): These items are for wxPython
[m_librarian.git] / views / Makefile
1 .SUFFIXES: # Clear the suffix list
2 .SUFFIXES: .py .tmpl .html
3
4
5 %.py: %.tmpl
6         cheetah compile --nobackup $<
7         python    -m compileall $@
8         python -O -m compileall $@
9
10
11 templates = $(shell echo *.tmpl)
12 modules = $(patsubst %.tmpl,%.py,$(templates))
13
14
15 .PHONY: all
16 all: $(modules)