Mercurial > docs > ps-bericht-ibm
view Makefile @ 40:089e7feb937d
changed name of the organisation, cause it changed
author | meillo@marmaro.de |
---|---|
date | Wed, 02 Jul 2008 09:07:38 +0200 |
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