Mercurial > docs > DesignPatterns
comparison Makefile @ 6:7744082fd6a3
added composite; lots of restructuring; renamed main.tex to observer.tex
author | meillo@marmaro.de |
---|---|
date | Mon, 18 Jun 2007 12:10:02 +0200 |
parents | 0923f2ae50a5 |
children | a7bdc1211d3a |
comparison
equal
deleted
inserted
replaced
5:00d57081e389 | 6:7744082fd6a3 |
---|---|
1 # Makefile for latex docs | 1 # Makefile for latex docs |
2 | 2 |
3 SRC = main.tex | 3 SRC = observer.tex composite.tex |
4 OBJ = ${SRC:.tex=.pdf} | 4 OBJ = ${SRC:.tex=.pdf} |
5 | 5 |
6 all: xpdf | 6 |
7 all: | |
8 pdflatex observer.tex | |
9 pdflatex composite.tex | |
10 | |
11 | |
12 #all: ${OBJ} | |
7 | 13 |
8 #.tex.pdf: | 14 #.tex.pdf: |
9 # @echo pdflatex $< | 15 # @echo pdflatex $< |
10 # @pdflatex $< | 16 # @pdflatex $< |
11 | 17 |
15 @pdflatex ${SRC} | 21 @pdflatex ${SRC} |
16 | 22 |
17 xpdf: ${OBJ} | 23 xpdf: ${OBJ} |
18 @echo xpdf $@ | 24 @echo xpdf $@ |
19 @xpdf -fullscreen -z page ${OBJ} | 25 @xpdf -fullscreen -z page ${OBJ} |
20 @rm ${OBJ} | 26 #@rm ${OBJ} |
21 | 27 |
22 clean: | 28 clean: |
23 echo 'cleaning ...' | 29 echo 'cleaning ...' |
24 rm *.{aux,lof,log,lot,nav,out,snm,toc} | 30 rm *.{aux,lof,log,lot,nav,out,snm,toc} |
25 | 31 |