From 3c901e5f89653eeffbb31c21b6ec14eb8c475293 Mon Sep 17 00:00:00 2001 From: TriantaTV Date: Sun, 26 Feb 2023 19:22:28 -0600 Subject: [PATCH] Adjusted Makefile and added clean up --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 254adca..2507193 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,7 @@ compile: g++ $(INC) $(STD) -c -o build/SnakeFood.o src/SnakeFood.cpp link: - g++ build/*.o -o bin/SnakePlusPlus.out $(SFML) \ No newline at end of file + g++ build/*.o -o bin/SnakePlusPlus $(SFML) + +clean: + rm bin/*.o build/*.out \ No newline at end of file