From c84d8c493ccdc840a866a9f51f10fe6b1f2bc377 Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Mon, 10 Jun 2019 21:17:10 +0100 Subject: Refactoring - split giant processircmessage() switch statement into separate server and client functions in message.h/message.c. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3