From ba6e3c230f6a1235304683b529f14bdb6f03a5a8 Mon Sep 17 00:00:00 2001 From: Starnakin Date: Sun, 11 May 2025 16:58:48 +0200 Subject: [PATCH] fix: remove: .bin at the end of the executable --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 737cc4e..d8156fe 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ obj/%.o: src/%.c $(NAME): $(OBJ) mkdir -p build - $(LD) $(LDFLAGS) -o build/$(NAME).bin $(OBJ) + $(LD) $(LDFLAGS) -o build/$(NAME) $(OBJ) clean: rm -rf obj