0
|
1 # Makefile fuer den PS-Bericht
|
|
2
|
|
3 SRC = ps-bericht.tex
|
|
4 DEP = *.tex
|
|
5 OBJ = ${SRC:.tex=.pdf}
|
|
6
|
50
|
7 all: $(OBJ)
|
0
|
8
|
|
9 #.tex.pdf:
|
|
10 # @echo pdflatex $<
|
|
11 # @pdflatex $<
|
|
12
|
|
13 ${OBJ}: ${SRC} $(DEP)
|
|
14 @echo pdflatex $@
|
|
15 @pdflatex ${SRC}
|
|
16 @pdflatex ${SRC}
|
|
17
|
|
18 xpdf: ${OBJ}
|
50
|
19 xpdf -z page ${OBJ} &
|
0
|
20
|
|
21 clean:
|
36
|
22 rm -f *.aux *.toc *.lof
|
0
|
23
|
|
24 distclean: clean
|
|
25 rm -f $(OBJ)
|
|
26
|
|
27 .PHONY: all xpdf
|