aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-18 04:48:27 -0400
committerTest_User <hax@andrewyu.org>2024-06-18 04:48:27 -0400
commite333de86ce25becc322d0098d175f68c4e1f4c28 (patch)
tree94d522c722c514c463f8bd82067e9a0e631f9bf9 /Makefile
parentee14f7485128302bd6d8f858c157e92d06756160 (diff)
downloadhaxircd-e333de86ce25becc322d0098d175f68c4e1f4c28.tar.gz
haxircd-e333de86ce25becc322d0098d175f68c4e1f4c28.zip
Fix CFLAGS additions getting wiped if you don't specify them
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b499531..0cbb73c 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,6 @@ ORIGINAL_CFLAGS := $(CFLAGS)
INCLUDEFLAGS =
-CFLAGS += $(INCLUDEFLAGS) -D_REENTRANT -ggdb3 -Wall -Wextra -Wsign-conversion -Wno-unused-parameter -Wno-implicit-fallthrough -std=gnu99
-
LDFLAGS = -lpthread
.makeopts:
@@ -163,6 +161,8 @@ ifeq ($(rebuild),1)
.PHONY: .makeopts
endif
+CFLAGS += $(INCLUDEFLAGS) -D_REENTRANT -ggdb3 -Wall -Wextra -Wsign-conversion -Wno-unused-parameter -Wno-implicit-fallthrough -std=gnu99
+
USE_PLAINTEXT = 0
USE_CLIENT = 0
USE_GNUTLS = 0