From 0207e5c5e0e8f8e370d5b46c6630d973768b7ab0 Mon Sep 17 00:00:00 2001 From: Nick Griffey Date: Sun, 17 Mar 2024 20:42:16 -0500 Subject: [PATCH] add makefile for cheatsheet --- .gitignore | 3 +++ mgs/materials/Makefile | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 mgs/materials/Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..901352d --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +cheatsheet.aux +cheatsheet.log +cheatsheet.pdf diff --git a/mgs/materials/Makefile b/mgs/materials/Makefile new file mode 100644 index 0000000..80ea900 --- /dev/null +++ b/mgs/materials/Makefile @@ -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 $<