Update .gitignore and Makefile

This adds the ability to compile by typing `make cheddar.pdf`

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2016-02-10 16:40:53 -05:00
parent 49b006e1a6
commit 25d6713d24
2 changed files with 7 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
*.aux
*.fdb_latexmk
*.fls
*.log
*.pdf
*.swp

View File

@ -1,6 +1,11 @@
TEX = latexmk -recorder -pdf
%.pdf: %.tex
$(TEX) $<
cheese:
latexmk -recorder- -pdf *.tex
$(TEX) *.tex
clean:
latexmk -C