Mercurial > docs > Reisebericht-Ukraine07
view Makefile @ 11:5a2caee4f24e
added 2007-08-24
author | meillo@marmaro.de |
---|---|
date | Thu, 06 Sep 2007 18:24:55 +0200 (2007-09-06) |
parents | fd91829df761 |
children | fabdbea53cc0 |
line wrap: on
line source
# Makefile for latex docs SRC = Reisebericht-Ukraine07.tex OBJ = ${SRC:.tex=.pdf} all: pdflatex Reisebericht-Ukraine07.tex #merge: # rm -f all.pdf # pdftk A=00_vorstellung.pdf cat A1-2 output 00_vorstellung-mod.pdf && rm 00_vorstellung.pdf # pdftk *.pdf cat output all.pdf #all: ${OBJ} #.tex.pdf: # @echo pdflatex $< # @pdflatex $< ${OBJ}: ${SRC} @echo pdflatex $@ @pdflatex ${SRC} @pdflatex ${SRC} xpdf: ${OBJ} @echo xpdf $@ @xpdf -fullscreen -z page ${OBJ} #@rm ${OBJ} clean: echo 'cleaning ...' rm *.{aux,lof,log,lot,nav,out,snm,toc} 2> /dev/null .PHONY: all xpdf clean