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