Mercurial > docs > ps-bericht-ibm
view Makefile @ 6:f9e5c2cf48c3
new picture
author | schnalke@localhost.localdomain |
---|---|
date | Thu, 08 May 2008 16:30:44 +0200 |
parents | de3d14ca2b7a |
children | fec6754e1429 |
line wrap: on
line source
# 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