summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2019-06-10 21:17:10 +0100
committerLuke Bratch <luke@bratch.co.uk>2019-06-10 21:17:10 +0100
commitc84d8c493ccdc840a866a9f51f10fe6b1f2bc377 (patch)
treeb064e1f554b19378beb0909c78061001b331eb3a /Makefile
parent853efa64ff8ad6ebde47d1265f8b13e954a0d2f0 (diff)
Refactoring - split giant processircmessage() switch statement into separate server and client functions in message.h/message.c.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3316e82..caa293d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
CC=gcc
-DEPS = functions.h sockets.h config.h replay.h logging.h
+DEPS = functions.h sockets.h config.h replay.h logging.h structures.h message.h
%.o: %.c $(DEPS)
$(CC) -Wall -Wextra -c -o $@ $<
-blabouncer: blabouncer.o functions.o sockets.o config.o replay.o logging.o
- $(CC) -Wall -Wextra -lssl -lcrypto -o blabouncer blabouncer.o functions.o sockets.o config.o replay.o logging.o
+blabouncer: blabouncer.o functions.o sockets.o config.o replay.o logging.o message.o
+ $(CC) -Wall -Wextra -lssl -lcrypto -o blabouncer blabouncer.o functions.o sockets.o config.o replay.o logging.o message.o