aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2022-09-19 09:37:30 +0200
committerTheJackiMonster <thejackimonster@gmail.com>2022-09-19 09:37:30 +0200
commit7deabe9ff611d68ae780903e4970b5d73cd13493 (patch)
tree3830c51fc3dc1777715efc57dfe76aedc06f2938 /Makefile
parent969f1536918e342bb331acfb042bf906c307978c (diff)
downloadmessenger-cli-7deabe9ff611d68ae780903e4970b5d73cd13493.tar.gz
messenger-cli-7deabe9ff611d68ae780903e4970b5d73cd13493.zip
Remove library flags from compiling and fix warning
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 540e33b..66bb7e2 100644
--- a/Makefile
+++ b/Makefile
@@ -71,7 +71,7 @@ release: CFLAGS += $(RELEASEFLAGS)
71release: $(BINARY) 71release: $(BINARY)
72 72
73%.o: %.c 73%.o: %.c
74 $(GNU_CC) $(CFLAGS) -c $< -o $@ $(LIBRARY_FLAGS) 74 $(GNU_CC) $(CFLAGS) -c $< -o $@
75 75
76$(BINARY): $(OBJECT_FILES) 76$(BINARY): $(OBJECT_FILES)
77 $(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS) 77 $(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS)