Added make clean

This commit is contained in:
Brandon Dyck 2023-08-05 16:35:14 -06:00
parent 4b65fa5d4e
commit 9e98c11387

View File

@ -12,4 +12,9 @@ edited/%.markdown: original/%.markdown edit-chapter.go Makefile
tex/%.tex: edited/%.markdown Makefile tex/%.tex: edited/%.markdown Makefile
pandoc -o $@ $< --top-level-division=chapter pandoc -o $@ $< --top-level-division=chapter
.PHONY: tex
tex: $(tex_chapters) tex: $(tex_chapters)
.PHONY: clean
clean:
$(RM) $(edited_chapters) $(tex_chapters) book.pdf *.aux *.log *.out