view Makefile @ 11:4a9a22285369

added new pictures about the robot arm; added content for collision control
author schnalke@localhost.localdomain
date Tue, 13 May 2008 10:18:59 +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