~ev/apport/quantal

« back to all changes in this revision

Viewing changes to doc/Makefile

throw away complicated and incomplete build system, use DistUtilsExtra.auto

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.SUFFIXES: .tex .pdf
2
 
 
3
 
pdfs=$(subst .tex,.pdf,$(wildcard *.tex))
4
 
 
5
 
all: $(pdfs)
6
 
 
7
 
.tex.pdf:
8
 
        # build it twice to get correct TOC
9
 
        pdflatex $< >/dev/null
10
 
        pdflatex $< >/dev/null
11
 
 
12
 
clean:
13
 
        rm -f *.aux *.toc *.log $(pdfs)
14
 
 
15
 
.PHONY: all clean