docs/DesignPatterns
view Makefile @ 4:ba98bb97db06
added: Beispiel Zusammenfassung, Ueberleitung, Beschreibung von GoF
author | meillo@marmaro.de |
---|---|
date | Sun, 03 Jun 2007 19:26:33 +0200 |
parents | 961cb2d9b1b5 |
children | 7744082fd6a3 |
line source
1 # Makefile for latex docs
3 SRC = main.tex
4 OBJ = ${SRC:.tex=.pdf}
6 all: xpdf
8 #.tex.pdf:
9 # @echo pdflatex $<
10 # @pdflatex $<
12 ${OBJ}: ${SRC}
13 @echo pdflatex $@
14 @pdflatex ${SRC}
15 @pdflatex ${SRC}
17 xpdf: ${OBJ}
18 @echo xpdf $@
19 @xpdf -fullscreen -z page ${OBJ}
20 @rm ${OBJ}
22 clean:
23 echo 'cleaning ...'
24 rm *.{aux,lof,log,lot,nav,out,snm,toc}
26 .PHONY: all xpdf