From b14eaa7d090ef67bb1558deb67854df56d944274 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 19 Aug 2018 15:40:27 +0200 Subject: [PATCH] =?UTF-8?q?Add=20=E2=80=98clean=E2=80=98=20rule=20to=20Mak?= =?UTF-8?q?efile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index c8402d2..4638c74 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,14 @@ PRESENTATIONS=$(patsubst %.tex, %.pdf, $(wildcard presentations/*.tex)) all: ${PRESENTATIONS} +clean: + rm -f presentations/*.log + rm -f presentations/*.out + rm -f presentations/*.nav + rm -f presentations/*.aux + rm -f presentations/*.snm + rm -f presentations/*.toc + .ONESHELL: presentations/%.pdf : presentations/%.tex cd presentations