docs/ps-bericht-ibm

annotate Makefile @ 0:de3d14ca2b7a

inital commit
author schnalke@localhost.localdomain
date Wed, 07 May 2008 08:15:25 +0200
parents
children fec6754e1429
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
schnalke@0 7 all: xpdf
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}
schnalke@0 19 @echo evince $@
schnalke@0 20 @evince ${OBJ} &
schnalke@0 21
schnalke@0 22 clean:
schnalke@0 23 rm -f *.aux *.toc
schnalke@0 24
schnalke@0 25 distclean: clean
schnalke@0 26 rm -f $(OBJ)
schnalke@0 27
schnalke@0 28 .PHONY: all xpdf