docs/ps-bericht-ibm

view Makefile @ 40:089e7feb937d

changed name of the organisation, cause it changed
author meillo@marmaro.de
date Wed, 02 Jul 2008 09:07:38 +0200
parents de3d14ca2b7a
children b6083dedb62c
line source
1 # Makefile fuer den PS-Bericht
3 SRC = ps-bericht.tex
4 DEP = *.tex
5 OBJ = ${SRC:.tex=.pdf}
7 all: xpdf
9 #.tex.pdf:
10 # @echo pdflatex $<
11 # @pdflatex $<
13 ${OBJ}: ${SRC} $(DEP)
14 @echo pdflatex $@
15 @pdflatex ${SRC}
16 @pdflatex ${SRC}
18 xpdf: ${OBJ}
19 @echo evince $@
20 @evince ${OBJ} &
22 clean:
23 rm -f *.aux *.toc *.lof
25 distclean: clean
26 rm -f $(OBJ)
28 .PHONY: all xpdf