aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-09-19 09:31:12 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2022-09-19 09:31:12 +0200
commitc5cc59052212c61d9cf613c95811141c7bbcfb7d (patch)
tree3e62e3d69b68924706443e73cf2bfb720343f3fe
parenta67bafd0a50710de5fd729dbc5b938ad48580954 (diff)
downloadlibgnunetchat-c5cc59052212c61d9cf613c95811141c7bbcfb7d.tar.gz
libgnunetchat-c5cc59052212c61d9cf613c95811141c7bbcfb7d.zip
Remove library flags from compiling
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6dda07b..f60cc7b 100644
--- a/Makefile
+++ b/Makefile
@@ -77,7 +77,7 @@ release: CFLAGS += $(RELEASEFLAGS)
77release: $(LIBRARY) 77release: $(LIBRARY)
78 78
79%.o: %.c 79%.o: %.c
80 $(GNU_CC) $(CFLAGS) -c $< -o $@ -I $(INCLUDE_DIR) $(LIBRARY_FLAGS) 80 $(GNU_CC) $(CFLAGS) -c $< -o $@ -I $(INCLUDE_DIR)
81 81
82$(LIBRARY): $(OBJECT_FILES) 82$(LIBRARY): $(OBJECT_FILES)
83 $(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS) 83 $(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS)