Mercurial > docs > ps-bericht-ibm
comparison Makefile @ 0:de3d14ca2b7a
inital commit
author | schnalke@localhost.localdomain |
---|---|
date | Wed, 07 May 2008 08:15:25 +0200 |
parents | |
children | fec6754e1429 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:de3d14ca2b7a |
---|---|
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: | |
23 rm -f *.aux *.toc | |
24 | |
25 distclean: clean | |
26 rm -f $(OBJ) | |
27 | |
28 .PHONY: all xpdf |