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: meillo@50: all: $(OBJ) 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} meillo@50: xpdf -z page ${OBJ} & schnalke@0: schnalke@0: clean: schnalke@36: rm -f *.aux *.toc *.lof schnalke@0: schnalke@0: distclean: clean schnalke@0: rm -f $(OBJ) schnalke@0: schnalke@0: .PHONY: all xpdf