docs/ps-bericht-ibm

annotate Makefile @ 50:b6083dedb62c

adjusted Makefile
author meillo@marmaro.de
date Thu, 04 Sep 2008 10:09:58 +0200
parents fec6754e1429
children
rev   line source
schnalke@0 1 # Makefile fuer den PS-Bericht
schnalke@0 2
schnalke@0 3 SRC = ps-bericht.tex
schnalke@0 4 DEP = *.tex
schnalke@0 5 OBJ = ${SRC:.tex=.pdf}
schnalke@0 6
meillo@50 7 all: $(OBJ)
schnalke@0 8
schnalke@0 9 #.tex.pdf:
schnalke@0 10 # @echo pdflatex $<
schnalke@0 11 # @pdflatex $<
schnalke@0 12
schnalke@0 13 ${OBJ}: ${SRC} $(DEP)
schnalke@0 14 @echo pdflatex $@
schnalke@0 15 @pdflatex ${SRC}
schnalke@0 16 @pdflatex ${SRC}
schnalke@0 17
schnalke@0 18 xpdf: ${OBJ}
meillo@50 19 xpdf -z page ${OBJ} &
schnalke@0 20
schnalke@0 21 clean:
schnalke@36 22 rm -f *.aux *.toc *.lof
schnalke@0 23
schnalke@0 24 distclean: clean
schnalke@0 25 rm -f $(OBJ)
schnalke@0 26
schnalke@0 27 .PHONY: all xpdf