From 9e98c113874116f667a7fa0d0ef1ad65509b9901 Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Sat, 5 Aug 2023 16:35:14 -0600 Subject: [PATCH] Added make clean --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 982e043..c9e4be6 100644 --- a/Makefile +++ b/Makefile @@ -12,4 +12,9 @@ edited/%.markdown: original/%.markdown edit-chapter.go Makefile tex/%.tex: edited/%.markdown Makefile pandoc -o $@ $< --top-level-division=chapter +.PHONY: tex tex: $(tex_chapters) + +.PHONY: clean +clean: + $(RM) $(edited_chapters) $(tex_chapters) book.pdf *.aux *.log *.out