summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)