Mercurial > docs > Reisebericht-Ukraine07
comparison Makefile @ 0:fd91829df761
initial commit
author | meillo@marmaro.de |
---|---|
date | Sun, 02 Sep 2007 13:46:18 +0200 |
parents | |
children | fabdbea53cc0 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:fd91829df761 |
---|---|
1 # Makefile for latex docs | |
2 | |
3 SRC = Reisebericht-Ukraine07.tex | |
4 OBJ = ${SRC:.tex=.pdf} | |
5 | |
6 | |
7 all: | |
8 pdflatex Reisebericht-Ukraine07.tex | |
9 | |
10 #merge: | |
11 # rm -f all.pdf | |
12 # pdftk A=00_vorstellung.pdf cat A1-2 output 00_vorstellung-mod.pdf && rm 00_vorstellung.pdf | |
13 # pdftk *.pdf cat output all.pdf | |
14 | |
15 | |
16 #all: ${OBJ} | |
17 | |
18 #.tex.pdf: | |
19 # @echo pdflatex $< | |
20 # @pdflatex $< | |
21 | |
22 ${OBJ}: ${SRC} | |
23 @echo pdflatex $@ | |
24 @pdflatex ${SRC} | |
25 @pdflatex ${SRC} | |
26 | |
27 xpdf: ${OBJ} | |
28 @echo xpdf $@ | |
29 @xpdf -fullscreen -z page ${OBJ} | |
30 #@rm ${OBJ} | |
31 | |
32 clean: | |
33 echo 'cleaning ...' | |
34 rm *.{aux,lof,log,lot,nav,out,snm,toc} 2> /dev/null | |
35 | |
36 .PHONY: all xpdf clean |