view Makefile @ 26:9d9e198cf876

added test about the trade fair and added pictures
author schnalke@localhost.localdomain
date Fri, 13 Jun 2008 09:30:49 +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