view Makefile @ 29:b72e9618cc40

reworked text about company
author schnalke@localhost.localdomain
date Mon, 16 Jun 2008 10:27:46 +0200 (2008-06-16)
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