use the usual _pt notation
[PyX/mjg.git] / www / Makefile
blob5043cfa711388faab86a9373ee711871116a4cf0
1 default: build
3 htmlfiles = $(patsubst %.pt, %.html, $(filter-out maintemplate.pt examples.pt, $(wildcard *.pt))) examples/index.html $(patsubst %, examples/%index.html, $(shell grep / ../examples/INDEX))
4 publicserver = shell.sourceforge.net
5 publicpath = /home/groups/p/py/pyx/htdocs
7 all:
8 make clean
9 make build
11 clean:
12 rm -r build
14 public:
15 scp -oCompression=yes -r build/* $(publicserver):$(publicpath)
16 make chmod
18 chmod:
19 -ssh $(publicserver) "cd $(publicpath); chmod -fR g+w *"
21 build: always
22 -mkdir build
23 cp main.css build
24 cp -r icons build
25 cp png/*.png ../manual/manual.pdf ../faq/pyxfaq.pdf build
26 cp -r ../manual/manual build
27 for d in "" $(shell grep / ../examples/INDEX); do mkdir build/examples/$$d; cp ../examples/$$d*.png ../examples/$$d*.eps build/examples/$$d; done
28 PYTHONPATH=~/bin/python/Zope3/src ./pt2html.py
30 always:
31 @# just ensure to always build new even when the directory already exists