From e01d287e8817457bab15c93eeaf5b5b45fb22bf2 Mon Sep 17 00:00:00 2001 From: Kris Lamoureux Date: Wed, 3 Nov 2021 01:20:54 -0400 Subject: [PATCH] Add "make clean" to remove binaries --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 89ef3b6..c56ed90 100644 --- a/Makefile +++ b/Makefile @@ -5,3 +5,6 @@ hello: 01-hello-world.c mathvars: 02-vars-and-math.c gcc -o ./bin/02-mathvars 02-vars-and-math.c + +clean: + $(RM) ./bin/*-*