schnalke@0: # Makefile fuer den PS-Bericht schnalke@0: schnalke@0: SRC = ps-bericht.tex schnalke@0: DEP = *.tex schnalke@0: OBJ = ${SRC:.tex=.pdf} schnalke@0: schnalke@0: all: xpdf schnalke@0: schnalke@0: #.tex.pdf: schnalke@0: # @echo pdflatex $< schnalke@0: # @pdflatex $< schnalke@0: schnalke@0: ${OBJ}: ${SRC} $(DEP) schnalke@0: @echo pdflatex $@ schnalke@0: @pdflatex ${SRC} schnalke@0: @pdflatex ${SRC} schnalke@0: schnalke@0: xpdf: ${OBJ} schnalke@0: @echo evince $@ schnalke@0: @evince ${OBJ} & schnalke@0: schnalke@0: clean: schnalke@0: rm -f *.aux *.toc schnalke@0: schnalke@0: distclean: clean schnalke@0: rm -f $(OBJ) schnalke@0: schnalke@0: .PHONY: all xpdf