source: old/Documents/DrivePaper/Makefile@ 17164

Last change on this file since 17164 was 9109, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 1.2 KB
Line 
1TARGET = paper
2
3TARGETLIST = $(TARGET).pdf
4INTERMEDIATES = $(TARGET).dvi
5
6all: $(TARGETLIST)
7
8OPT = -file-line-error-style -interaction=nonstopmode
9
10.SILENT:
11
12define run-latex
13 @echo " - Producing $@ from" $<
14 latex $(OPT) $< > /dev/null
15 latex $(OPT) $< > /dev/null
16 (latex $(OPT) $< )
17endef
18
19#define run-latex
20# @echo " - Producing $@ from" $<
21# ! (latex $(OPT) $< | grep -E \.tex:[0-9]*:\ )
22# bibtex --terse $(<:.tex=)
23# latex $(OPT) $< > /dev/null
24# latex $(OPT) $< > /dev/null
25# ! (latex $(OPT) $< | grep ^LaTeX\ Warning:\ )
26#endef
27
28%.dvi: %.dtx
29 $(run-latex)
30
31%.dvi: %.tex %.bib
32 $(run-latex)
33
34%.ps: %.dvi
35 @echo " - Producing $@ from" $<
36 dvips -q $< $@~ && mv $@~ $@
37
38%.pdf: %.dvi
39 @echo " - Producing $@ from" $<
40 dvipdf -q $< $@~ && mv $@~ $@
41
42%: %.dvi
43 @echo " - Producing $@.pdf from" $<
44 dvipdf -q $<
45
46%.ps.gz: %.ps
47 @echo " - Producing booklet $@ from" $<
48 psbook -q $< | psnup -q -2 | pstops -q 2:0,1VH | gzip -c -9 > $@
49
50%.bdf: %.ps.gz
51 @echo " - Producing booklet $@ from" $<
52 gzip -cd $< | ps2pdf - $@
53
54clean:
55 @rm -f $(INTERMEDIATES) $(TARGETLIST) *.dvi *.aux *.blg *.lof *.log *.lot *.toc *.bbl *.bdf
56
57mrproper: clean
58 @rm -f *~
Note: See TracBrowser for help on using the repository browser.