fix: remove: .bin at the end of the executable

This commit is contained in:
Starnakin 2025-05-11 16:58:48 +02:00
parent 50d2de82af
commit ba6e3c230f

View File

@ -17,7 +17,7 @@ obj/%.o: src/%.c
$(NAME): $(OBJ) $(NAME): $(OBJ)
mkdir -p build mkdir -p build
$(LD) $(LDFLAGS) -o build/$(NAME).bin $(OBJ) $(LD) $(LDFLAGS) -o build/$(NAME) $(OBJ)
clean: clean:
rm -rf obj rm -rf obj