Mercurial > docs > ps-bericht-ibm
annotate Makefile @ 53:27a4243536d6 default tip
fixed dash-problem
author | meillo@marmaro.de |
---|---|
date | Thu, 04 Sep 2008 11:39:17 +0200 |
parents | b6083dedb62c |
children |
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 | |
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 |