commit c5cc59052212c61d9cf613c95811141c7bbcfb7d
parent a67bafd0a50710de5fd729dbc5b938ad48580954
Author: TheJackiMonster <thejackimonster@gmail.com>
Date: Mon, 19 Sep 2022 09:31:12 +0200
Remove library flags from compiling
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -77,7 +77,7 @@ release: CFLAGS += $(RELEASEFLAGS)
release: $(LIBRARY)
%.o: %.c
- $(GNU_CC) $(CFLAGS) -c $< -o $@ -I $(INCLUDE_DIR) $(LIBRARY_FLAGS)
+ $(GNU_CC) $(CFLAGS) -c $< -o $@ -I $(INCLUDE_DIR)
$(LIBRARY): $(OBJECT_FILES)
$(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS)