add makefile for cheatsheet

This commit is contained in:
filifa 2024-03-19 20:33:14 -05:00
parent 65982553cb
commit d65263a876
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 $<