Skip to content

Commit

Permalink
Added a Makefile for BayHac talk
Browse files Browse the repository at this point in the history
  • Loading branch information
tibbe committed Feb 12, 2011
1 parent b97efbc commit f00ea83
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions bayhac-2011/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
TARGET = slides.pdf

all: $(TARGET)

clean:
rm -f *.aux *.dvi *.log *.nav *.out *.snm *.toc *.pdf *.vrb *.hi *.o *.prof

distclean: clean
rm -f $(TARGET)

pdf: all
open $(TARGET)

%.pdf: %.tex
pdflatex -file-line-error $<

.PHONY: all clean distclean pdf

0 comments on commit f00ea83

Please sign in to comment.