summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2023-08-07 19:43:57 -0400
committerTest_User <hax@andrewyu.org>2023-08-07 19:43:57 -0400
commita25d22a1c26203b7c9e2dcd33f4c602b0f82684d (patch)
tree0ce7ba3ab39ae16e730076d1e66bdeb4a41099a7 /Makefile
parent4f6fdc6d4faba1c268b8714be26f683de6884c77 (diff)
downloadcoupserv-a25d22a1c26203b7c9e2dcd33f4c602b0f82684d.tar.gz
coupserv-a25d22a1c26203b7c9e2dcd33f4c602b0f82684d.zip
A bunch of stuff, mostly related to client support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4b76cad..74178eb 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@ DEPS = $(shell $(CC) $(INCLUDEFLAGS) -MM -MT $(1).o $(1).c | sed -z 's/\\\n //g'
.PHONY: all clean cleanall release
all: haxserv
-haxserv: main.o server_network.o client_network.o commands.o table.o config.o tls.o utils.o
+haxserv: main.o server_network.o client_network.o general_network.o commands.o table.o config.o tls.o utils.o
$(CC) $^ -o $@ $(LDFLAGS)
%.o: %.c
@@ -49,6 +49,8 @@ $(call DEPS,server_network)
$(call DEPS,client_network)
+$(call DEPS,general_network)
+
$(call DEPS,commands)
$(call DEPS,table)