1#
2# Copyright 2014, NICTA
3#
4# This software may be distributed and modified according to the terms of
5# the BSD 2-Clause license. Note that NO WARRANTY is provided.
6# See "LICENSE_BSD2.txt" for details.
7#
8# @TAG(NICTA_BSD)
9#
10
11ctranslation.pdf: ctranslation.tex
12	pdflatex $< && bibtex ${<:.tex=.aux} && pdflatex $< && pdflatex $<
13
14.PHONY: clean distclean
15clean:
16	-/bin/rm -f ctranslation.{aux,bbl,blg,log,toc}
17
18distclean: clean
19	-/bin/rm -f ctranslation.pdf
20