From 094f02adde2e843cdbf4f0ca1f44d109697b6ac5 Mon Sep 17 00:00:00 2001 From: Aaron Ball Date: Wed, 31 Oct 2018 16:35:28 -0600 Subject: Makefile:Add 'clean' target This deletes all of the contents of the obj directory. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index eb9cf15..c00cbcc 100644 --- a/Makefile +++ b/Makefile @@ -11,3 +11,6 @@ all: debug: make all DBG=-g + +clean: + if [ -d obj ]; then rm -f obj/*; fi -- cgit v1.2.3