summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/fithesis/guide/mu/resources/Makefile
blob: 54fd778153fb51bf9c186af0c8a24f03990e2afa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PDFFILES=empty.pdf
TEX=pdflatex
.PHONY: all clean
all: $(PDFFILES) clean

# This target typesets the a PDF file.
%.pdf: %.tex
	$(TEX) $<
	$(TEX) $<

# This target removes any auxiliary files.
clean:
	rm -f *.aux *.log *.out *.toc *.lot *.lof

# This target removes any auxiliary files
# and the output PDF files.
implode: clean
	rm -f $(PDFFILES)