Mercurial > 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 | 0923f2ae50a5 |
children | 7744082fd6a3 |
line wrap: on
line source
# Makefile for latex docs SRC = main.tex OBJ = ${SRC:.tex=.pdf} all: xpdf #.tex.pdf: # @echo pdflatex $< # @pdflatex $< ${OBJ}: ${SRC} @echo pdflatex $@ @pdflatex ${SRC} @pdflatex ${SRC} xpdf: ${OBJ} @echo xpdf $@ @xpdf -fullscreen -z page ${OBJ} @rm ${OBJ} clean: echo 'cleaning ...' rm *.{aux,lof,log,lot,nav,out,snm,toc} .PHONY: all xpdf