0
|
1 # Makefile fuer den PS-Bericht
|
|
2
|
|
3 SRC = ps-bericht.tex
|
|
4 DEP = *.tex
|
|
5 OBJ = ${SRC:.tex=.pdf}
|
|
6
|
|
7 all: xpdf
|
|
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}
|
|
19 @echo evince $@
|
|
20 @evince ${OBJ} &
|
|
21
|
|
22 clean:
|
36
|
23 rm -f *.aux *.toc *.lof
|
0
|
24
|
|
25 distclean: clean
|
|
26 rm -f $(OBJ)
|
|
27
|
|
28 .PHONY: all xpdf
|