Mercurial > docs > ps-bericht-ibm
annotate Makefile @ 38:c64bd51d3dd6
adjusted main to rename; minor text improvements
author | schnalke@localhost.localdomain |
---|---|
date | Tue, 17 Jun 2008 14:26:49 +0200 |
parents | fec6754e1429 |
children | b6083dedb62c |
rev | line source |
---|---|
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 |