From c123b2de11634cb7835207f35e921280ca0ebf0e Mon Sep 17 00:00:00 2001 From: Quinn Date: Thu, 20 Mar 2025 13:58:18 +0100 Subject: [PATCH] fix: remove unused $(EXT) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 9fb6cbd..f23b260 100644 --- a/makefile +++ b/makefile @@ -29,7 +29,7 @@ SRC := $(wildcard src/*.c) $(wildcard src/**/*.c) $(wildcard src/**/**/*.c) $(wi # output locations OBJ := $(patsubst src/%,$(DIR_OBJ)/$(PROF)/%,$(SRC:.c=.o)) DEP := $(OBJ:.o=.d) -TARGET := $(DIR_BUILD)/$(NAME)$(EXT) +TARGET := $(DIR_BUILD)/$(NAME) define wr_colour @echo -e "\033[$(2)m$(1)\033[0m"