Mercurial > docs > ps-bericht-ibm
view Makefile @ 41:f72c9230d988
put label after includegraphics, for correct numbering; corrected som typos
author | meillo@marmaro.de |
---|---|
date | Wed, 02 Jul 2008 10:39:44 +0200 (2008-07-02) |
parents | fec6754e1429 |
children | b6083dedb62c |
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 *.lof distclean: clean rm -f $(OBJ) .PHONY: all xpdf