Mercurial > docs > ps-bericht-ibm
diff Makefile @ 0:de3d14ca2b7a
inital commit
author | schnalke@localhost.localdomain |
---|---|
date | Wed, 07 May 2008 08:15:25 +0200 |
parents | |
children | fec6754e1429 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Wed May 07 08:15:25 2008 +0200 @@ -0,0 +1,28 @@ +# Makefile fuer den PS-Bericht + +SRC = ps-bericht.tex +DEP = *.tex +OBJ = ${SRC:.tex=.pdf} + +all: xpdf + +#.tex.pdf: +# @echo pdflatex $< +# @pdflatex $< + +${OBJ}: ${SRC} $(DEP) + @echo pdflatex $@ + @pdflatex ${SRC} + @pdflatex ${SRC} + +xpdf: ${OBJ} + @echo evince $@ + @evince ${OBJ} & + +clean: + rm -f *.aux *.toc + +distclean: clean + rm -f $(OBJ) + +.PHONY: all xpdf