-
Notifications
You must be signed in to change notification settings - Fork 41
/
Makefile
99 lines (85 loc) · 2.93 KB
/
Makefile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
F=thinkjava2
all:
pdflatex $(F).tex
pdflatex $(F).tex
pdflatex $(F).tex
clean:
rm -f comment.cut $(F).aux $(F).idx $(F).ilg $(F).ind $(F).log $(F).out $(F).toc
plastex:
# Before running plastex, we need the current directory in PYTHONPATH
# export PYTHONPATH=$PYTHONPATH:.
latexpand --keep-comments $(F).tex > $(F).expand
python2 preprocess.py $(F).expand > $(F).plastex
plastex --renderer=DocBook --theme=book --image-resolution=300 --filename=$(F).xml $(F).plastex
cd $(F); python2 ../postprocess.py $(F).xml > temp; mv temp $(F).xml
cd $(F); python ../xmlsplit.py $(F).xml
xxe:
xmlcopyeditor ~/ThinkJava2/$(F)/$(F).xml &
lint:
xmllint -noout $(F)/$(F).xml
#oreilly:
# rsync -a $(F)/*.xml atlas/
# rsync -a figs/*.pdf atlas/figs/
# rsync -a figs/*.png atlas/figs/
# rsync -a figs/*.jpg atlas/figs/
# cd atlas; git add *.xml figs/*
# cd atlas; git commit -m "Automated check in."
# cd atlas; git push
# if a bug (in ocaml?) causes "make hevea" to fail; use "make -i hevea" instead
.PHONY: hevea
hevea:
cp $(F).tex $(F)_.tex
rm -rf heveahtml
mkdir heveahtml
hevea -O -exec xxdate.exe -e latexonly.tex hevea/htmlonly.tex $(F)_
hevea -O -exec xxdate.exe -e latexonly.tex hevea/htmlonly.tex $(F)_
imagen -png -pdf $(F)_
imagen -png -pdf $(F)_
hacha $(F)_.html
cp hevea/*.png heveahtml
cat custom.css >> $(F)_.css
mv index.html $(F)_?*.html $(F)_*.png $(F)_.css heveahtml
rm *motif.gif $(F)_.*
sed -i 's/\\%/%/g' heveahtml/*.html
sed -i 's/\\{/{/g' heveahtml/*.html
sed -i 's/\\}/}/g' heveahtml/*.html
sed -i 's/\\\\n/\\n/g' heveahtml/*.html
sed -i 's/\\\\t/\\t/g' heveahtml/*.html
python3 hevea/rename.py heveahtml
.PHONY: trinket
trinket:
cp $(F).tex $(F)_.tex
rm -rf trinkethtml
mkdir trinkethtml
hevea -O -exec xxdate.exe -e latexonly.tex trinket/htmlonly.tex $(F)_
hevea -O -exec xxdate.exe -e latexonly.tex trinket/htmlonly.tex $(F)_
imagen -png -pdf $(F)_
imagen -png -pdf $(F)_
hacha $(F)_.html
cp trinket/*.css trinket/*.js trinkethtml
mv index.html $(F)_.css $(F)_?*.html $(F)_*.png trinkethtml
rm *motif.gif $(F)_.*
sed -i 's/\\%/%/g' trinkethtml/*.html
sed -i 's/\\{/{/g' trinkethtml/*.html
sed -i 's/\\}/}/g' trinkethtml/*.html
sed -i 's/\\\\n/\\n/g' trinkethtml/*.html
sed -i 's/\\\\t/\\t/g' trinkethtml/*.html
# perl postprocessing (woot) seems easier than escaping through Latex and Hevea
perl -i -pe 's/\[\[\[\[\s?(\S*?)\s?\]\]\]\]/----{\1}----/g' trinkethtml/*.html
perl -i -pe 's/\<a .*? ALT\=\"(Previous|Up|Next)\"\>\<\/a\>//g' trinkethtml/*.html
perl -0777 -i -pe 's/\<hr\>//' trinkethtml/*.html
# produce nunjucks templates for our app
mkdir trinkethtml/nunjucks
python trinket/maketemplates.py
# gather images for ease of uploading to CDN
mkdir trinkethtml/img
cp trinkethtml/*.png trinkethtml/img
DEST = /home/downey/public_html/greent/thinkjava7
distrib:
rm -rf dist
mkdir dist
rsync -a $(F).pdf dist
rsync -a heveahtml/ dist/html/
rsync -a dist/* $(DEST)
chmod -R o+r $(DEST)/*
cd $(DEST)/..; sh back