make clean even cleaner now.
[clqr.git] / Makefile
blobd7ffa7c145bb25e90d85e1714d38b15c5488bf65
1 # Copyright (C) 2008, 2009, 2010 Bert Burgemeister
3 # Permission is granted to copy, distribute and/or modify this
4 # document under the terms of the GNU Free Documentation License,
5 # Version 1.2 or any later version published by the Free Software
6 # Foundation; with no Invariant Sections, no Front-Cover Texts and
7 # no Back-Cover Texts. For details see file COPYING.
9 CLQR = clqr
10 SEND-TO-LOG = | tee -a lastbuild.log
12 LATEX = latex
13 MAKEINDEX = makeindex -c
14 MPOST = TEX=latex mpost
15 DVIPS = dvips
16 PSNUP-A4 = psnup -W10.5cm -H29.7cm -pa4 -2
17 PSNUP-LETTER = psnup -W4.25in -H11in -pletter -2
18 PSBOOK-ALL = psbook
19 PSBOOK-FOUR = psbook -s4
20 PS2PDF = ps2pdf -dPDFSETTINGS=/prepress
21 CONVERT = convert
22 MONTAGE = montage
23 HEAD = head
24 TAIL = tail
25 TOUCH = touch
26 CP = cp --verbose
27 RM = rm --force --verbose
28 MV = mv --force --verbose
29 MAKE = make
30 GZIP = gzip
31 GIT_REVISION = git-describe | sed 's/\(.*-.*\)-.*/\1/'
32 GIT_ARCHIVE = git-archive --format=tar --prefix=$(CLQR)/ HEAD | $(GZIP)
33 GIT_LOG = git-log
34 DATE = git-log HEAD^..HEAD --date=short | awk '/Date:/{print $$2}' | tr -d '\n\\'
35 RSYNC = rsync -va
36 SSH = ssh
38 all: letter a4
40 letter:
41 $(MAKE) letter-booklets
42 $(MAKE) $(CLQR)-letter-consec.pdf
44 a4:
45 $(MAKE) a4-booklets
46 $(MAKE) $(CLQR)-a4-consec.pdf
48 letter-booklets: $(CLQR)-letter-booklet-all.pdf $(CLQR)-letter-booklet-four.pdf
50 a4-booklets: $(CLQR)-a4-booklet-all.pdf $(CLQR)-a4-booklet-four.pdf
52 $(CLQR)-%-consec.pdf: $(CLQR)-%-consec.ps
53 $(PS2PDF) $< $@ $(SEND-TO-LOG)
55 $(CLQR)-letter-booklet-%.pdf: $(CLQR)-letter-booklet-%.ps
56 $(PS2PDF) -sPAPERSIZE=letter $< $@ $(SEND-TO-LOG)
58 $(CLQR)-a4-booklet-%.pdf: $(CLQR)-a4-booklet-%.ps
59 $(PS2PDF) -sPAPERSIZE=a4 $< $@ $(SEND-TO-LOG)
61 $(CLQR)-letter-booklet-%.ps: $(CLQR)-letter-signature-%.ps color-black.flag
62 $(PSNUP-LETTER) $< > $@ $(SEND-TO-LOG)
64 $(CLQR)-a4-booklet-%.ps: $(CLQR)-a4-signature-%.ps color-black.flag
65 $(PSNUP-A4) $< > $@ $(SEND-TO-LOG)
67 $(CLQR)-%-signature-all.ps: $(CLQR)-%-consec.ps
68 $(PSBOOK-ALL) $< $@ $(SEND-TO-LOG)
70 $(CLQR)-%-signature-four.ps: $(CLQR)-%-consec.ps
71 $(PSBOOK-FOUR) $< $@ $(SEND-TO-LOG)
73 $(CLQR)-%-consec.ps: $(CLQR)-%.dvi color-colorful.flag
74 $(DVIPS) -o $@ $< $(SEND-TO-LOG)
76 $(CLQR)-%.dvi: $(CLQR).tex $(CLQR)-*.tex $(CLQR).*.tex $(CLQR)-types-and-classes.1 paper-%.flag revision-number
77 $(TOUCH) $(CLQR).ind $(SEND-TO-LOG)
78 $(LATEX) $(CLQR).tex $(SEND-TO-LOG)
79 $(LATEX) $(CLQR).tex $(SEND-TO-LOG)
80 $(MAKEINDEX) -s $(CLQR).ist $(CLQR).idx $(SEND-TO-LOG)
81 $(LATEX) $(CLQR).tex $(SEND-TO-LOG)
82 $(MV) $(CLQR).dvi $@ $(SEND-TO-LOG)
84 clqr-types-and-classes.1: $(CLQR)-types-and-classes.mp $(CLQR).macros.tex clqr.packages.tex
85 $(MPOST) $< $(SEND-TO-LOG)
87 paper-a4.flag:
88 $(CP) paper-a4.tex paper-current.tex $(SEND-TO-LOG)
89 $(RM) paper-letter.flag $(SEND-TO-LOG)
90 $(TOUCH) $@
92 paper-letter.flag:
93 $(CP) paper-letter.tex paper-current.tex $(SEND-TO-LOG)
94 $(RM) paper-a4.flag $(SEND-TO-LOG)
95 $(TOUCH) $@
97 color-colorful.flag:
98 $(CP) color-colorful.tex color-current.tex $(SEND-TO-LOG)
99 $(RM) color-black.flag $(SEND-TO-LOG)
100 $(TOUCH) $@
102 color-black.flag:
103 $(CP) color-black.tex color-current.tex $(SEND-TO-LOG)
104 $(RM) color-colorful.flag $(SEND-TO-LOG)
105 $(TOUCH) $@
107 revision-number:
108 $(GIT_REVISION) | tee REVISION.tex > html/release-revision.txt
109 $(DATE) | tee DATE.tex > html/release-date.txt
111 #DATE.tex: $(CLQR).tex $(CLQR)-*.tex
112 # $(DATE) | tee $@ > html/release-date.txt
114 clean:
115 $(RM) *.dvi *.toc *.aux *.log *.idx *.ilg *.ind *.out *.ps *.pdf *~ html/*~ \
116 *.flag *.jpg html/*.jpg *.tar.gz REVISION.tex DATE.tex \
117 html/latest-changes.html html/release-revision.txt html/release-date.txt \
118 *.1 mpxerr.tex paper-current.tex color-current.tex
121 # Project hosting
123 publish: letter a4 \
124 html/sample-frontcover.jpg \
125 html/sample-firstpage-all.jpg html/sample-firstpage-four.jpg \
126 html/sample-firstpage-consec.jpg html/sample-source.jpg \
127 html/latest-changes.html \
128 $(CLQR).tar.gz
129 $(MAKE) publishclean
130 $(RSYNC) --delete ./ trebb@shell.berlios.de:/home/groups/ftp/pub/clqr/clqr/ $(SEND-TO-LOG)
131 $(RSYNC) ./html/ trebb@shell.berlios.de:/home/groups/clqr/htdocs/ $(SEND-TO-LOG)
133 html/sample-frontcover.jpg: $(CLQR)-a4-consec.pdf
134 $(CONVERT) $<'[0]' -verbose -resize 40% temp.jpg $(SEND-TO-LOG)
135 $(MONTAGE) temp.jpg -tile 1x1 -geometry +1+1 -background gray $@ $(SEND-TO-LOG)
136 $(RM) temp.jpg
138 html/sample-firstpage-%.jpg: $(CLQR)-a4-booklet-%.pdf
139 $(CONVERT) $<'[0]' -verbose -resize 15% temp.jpg $(SEND-TO-LOG)
140 $(MONTAGE) temp.jpg -tile 1x1 -geometry +1+1 -background gray $@ $(SEND-TO-LOG)
141 $(RM) temp.jpg
143 html/sample-firstpage-consec.jpg: $(CLQR)-a4-consec.pdf
144 $(CONVERT) $<'[0]' -verbose -resize 15% temp.jpg $(SEND-TO-LOG)
145 $(MONTAGE) temp.jpg -tile 1x1 -geometry +1+1 -background gray $@ $(SEND-TO-LOG)
146 $(RM) temp.jpg
148 html/sample-source.jpg: $(CLQR)-numbers.tex
149 $(HEAD) -n 57 $< | $(TAIL) -n 40 | $(CONVERT) -font Courier -crop 120x80+30+2 +repage label:@- temp.jpg $(SEND-TO-LOG)
150 $(MONTAGE) temp.jpg -tile 1x1 -geometry +1+1 -background gray $@ $(SEND-TO-LOG)
151 $(RM) temp.jpg
153 html/latest-changes.html: $(CLQR).tex $(CLQR)-*.tex
154 if $(GIT_LOG) -5 --pretty=format:"<p><i>%ci</i>%n<br />%s%n<br />%b</p>" > $@; then true; else true; fi $(SEND-TO-LOG)
156 $(CLQR).tar.gz: $(CLQR).tex $(CLQR)-*.tex
157 if $(GIT_ARCHIVE) > $(CLQR).tar.gz; then true; else true; fi $(SEND-TO-LOG)
159 publishclean:
160 $(RM) *.ps *.1 *~ html/*~