add makefile for cheatsheet

This commit is contained in:
Nick Griffey 2024-03-17 20:42:16 -05:00
parent 18062d9820
commit 0207e5c5e0
2 changed files with 14 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
cheatsheet.aux
cheatsheet.log
cheatsheet.pdf

11
mgs/materials/Makefile Normal file
View File

@ -0,0 +1,11 @@
.PHONY: all clean
all: cheatsheet.pdf
clean:
rm -f cheatsheet.aux
rm -f cheatsheet.log
rm -f cheatsheet.pdf
cheatsheet.pdf: cheatsheet.tex
pdflatex $<