Mercurial > docs > ps-bericht-ibm
view Makefile @ 1:e1081de0b981
neue Beschreibung der Abteilung
author | schnalke@localhost.localdomain |
---|---|
date | Wed, 07 May 2008 16:42:14 +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