summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2a31837bfe3d36c8a022588e78798a20486ca0dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
LATEX    = pdflatex
OUTPUT   = docker-doc
SRC     != find * -name '*.tex'

${OUTPUT}.pdf: ${SRC}
	${LATEX} -jobname=${OUTPUT} main.tex

clean:
	@rm -f *.aux *.log

clean-all: clean
	@rm -f *.pdf