Codebase list findbugs / upstream/latest design / architecture / Makefile
upstream/latest

Tree @upstream/latest (Download .tar.gz)

Makefile @upstream/latestraw · history · blame

TEX_SRCS = architecture.tex
PDFS = $(TEX_SRCS:.tex=.pdf)

%.pdf : %.tex
	pdflatex $*
	pdflatex $*
	pdflatex $*

all : $(PDFS)

clean :
	rm -f *.aux *.log

depend :
	./mkdep.pl $(TEX_SRCS) > depend.mak

depend.mak :
	touch depend.mak

include depend.mak