From 23e861ad5478435ed7da9dcb98047afc9d22d2b3 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Sat, 19 Oct 2024 16:31:15 +0200 Subject: [PATCH] dassd --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 13c758b..8ea4801 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,7 @@ # Compiler to use CC ?= gcc -CFLAGS = -Wall -Wextra -std=gnu23 -I include -LDFLAGS = -lelf +CFLAGS = -Wall -Wextra -std=gnu23 -I include -lelf # Directory for build outputs BUILD_DIR := build @@ -33,7 +32,7 @@ debug: $(TARGET) # Rule to link object files into the final executable $(TARGET): $(OBJS) | $(BUILD_DIR) - $(CC) $(CFLAGS) $^ $(LDFLAGS) -o $@ + $(CC) $(CFLAGS) $^ -o $@ du -b $(TARGET) # Size of the executable in bytes # Rule to compile source files into object files