diff options
author | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-11-12 23:01:29 +1100 |
---|---|---|
committer | Carlo Zancanaro <carlo@pc-4w14-0.cs.usyd.edu.au> | 2012-11-12 23:01:29 +1100 |
commit | 40b3d2962c3a2471227538afa5e8ea7a6c8a24e2 (patch) | |
tree | 57b1c4435ddc25f41c57302c90b4f4454c890e8e /tex/poster/Makefile | |
parent | 187d6fa4b3f8ceb0676f4d3a822ddadc451f2b98 (diff) |
Poster stuff.
Diffstat (limited to 'tex/poster/Makefile')
-rw-r--r-- | tex/poster/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tex/poster/Makefile b/tex/poster/Makefile new file mode 100644 index 0000000..aeaf9cd --- /dev/null +++ b/tex/poster/Makefile @@ -0,0 +1,21 @@ +TEXFILE = poster + +.PHONY: all clean quick + +all: $(TEXFILE).pdf clean + +clean: + -rm -f $(TEXFILE).aux $(TEXFILE).dvi $(TEXFILE).log $(TEXFILE).ps + -rm -f $(TEXFILE).bbl $(TEXFILE).blg + +.force: + +quick: $(TEXFILE).tex references.bib .force + pdflatex $(TEXFILE) + +$(TEXFILE).pdf: $(TEXFILE).tex references.bib + pdflatex $(TEXFILE) + bibtex $(TEXFILE) + pdflatex $(TEXFILE) + pdflatex $(TEXFILE) + |