From e62c30c8b1098d718aa419189c3f86adbe9c9383 Mon Sep 17 00:00:00 2001 From: LelixSuper Date: Sat, 16 Jul 2016 20:24:14 +0200 Subject: [PATCH] improve 'clean' target of 'src/' makefile --- src/Makefile | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/src/Makefile b/src/Makefile index c294a813a..3a45e73e9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -196,24 +196,12 @@ endif # clean everything clean: -ifeq ($(PLATFORM),PLATFORM_DESKTOP) - ifeq ($(PLATFORM_OS),WINDOWS) - del *.o libraylib.a - else - rm -f *.o libraylib.a - endif -endif -ifeq ($(PLATFORM),PLATFORM_WEB) - ifeq ($(PLATFORM_OS),WINDOWS) - del *.o libraylib.bc - else - rm -f *.o libraylib.bc - endif -endif -ifeq ($(PLATFORM),PLATFORM_RPI) - rm -f *.o libraylib.a +ifeq ($(PLATFORM_OS),WINDOWS) + del *.o libraylib.a libraylib.bc +else + rm -f *.o libraylib.a libraylib.bc endif - @echo Cleaning done + @echo "removed all generated files!" # instead of defining every module one by one, we can define a pattern # this pattern below will automatically compile every module defined on $(OBJS)