From d65263a8762abdc4153f64a59eeb708da37881d8 Mon Sep 17 00:00:00 2001 From: filifa Date: Tue, 19 Mar 2024 20:33:14 -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 $<