sunny / escalope.net

The mess of baked scripts that power escalope.net

This URL has Read+Write access

escalope.net / Makefile
100644 30 lines (24 sloc) 0.633 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
all: css index perles tronchi 404
 
#crowd: escalope.n3 scripts/sparql.py scripts/sparql_to_hcard.xsl
# python scripts/sparql.py > crowd.xml
#tronchi: crowd
# sh scripts/gen_tronchi.sh > tronchi.html
 
tronchi:
ruby scripts/gen_tronchi.rb > tronchi.html
css:
python scripts/cssgen.py stylesheets/*.clevercss > stylesheets/escalope.css
perles:
ruby scripts/perles.rb > perles.html
404:
sh scripts/gen_404.sh > 404.html
index:
sh scripts/gen_index.sh > index.html
 
clean:
rm -f scripts/*.pyc
rm crowd.xml
 
distclean: clean
rm -f index.html
rm -f perles.html
rm -f 404.html
rm -f tronchi.html
rm -f stylesheets/escalope.css