annotate Makefile @ 2:39f95d52157f default tip

Added tag final for changeset 11ef4e5185f3cb19deb73eaaa016277af7eb998e
author markus schnalke <meillo@marmaro.de>
date Sun, 15 Apr 2007 02:48:52 +0200
parents c3b2bcc78dc2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
1 # Makefile fuer den PS-Bericht
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
2
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
3 SRC = main.tex
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
4 OBJ = ${SRC:.tex=.pdf}
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
5
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
6 all: xpdf
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
7
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
8 #.tex.pdf:
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
9 # @echo pdflatex $<
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
10 # @pdflatex $<
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
11
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
12 ${OBJ}: ${SRC}
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
13 @echo pdflatex $@
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
14 @pdflatex ${SRC}
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
15 @pdflatex ${SRC}
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
16
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
17 xpdf: ${OBJ}
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
18 @echo xpdf $@
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
19 @xpdf -z page ${OBJ}
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
20 @rm ${OBJ}
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
21
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
22
c3b2bcc78dc2 initial commit
markus schnalke <meillo@marmaro.de>
parents:
diff changeset
23 .PHONY: all xpdf