docs/ps-bericht-ibm
view Makefile @ 45:f1431d0cafdc
moved text about the expos to separate file, and added content there
author | meillo@marmaro.de |
---|---|
date | Tue, 26 Aug 2008 13:38:41 +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