From ad64867b40110d550908529960ef1a46a3cf9fec Mon Sep 17 00:00:00 2001 From: Nakidai Date: Mon, 30 Oct 2023 03:05:29 +0300 Subject: [PATCH] Remove config from make clean --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 799d6bd..d3e229f 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ include config/config.mk OUT = game CFLAGS = LDFLAGS = -INCLUDE = -Iinclude +INCLUDE = -Iinclude -Iconfig CC = cc LD = ld RM = rm -f @@ -24,6 +24,6 @@ $(OUT): obj $(OBJ) $(CC) -o $@ $(OBJ) $(LDFLAGS) clean: - $(RM) $(OUT) config/* $(OBJDIR)/* + $(RM) $(OUT) $(OBJDIR)/* .PHONY: default clean