From c46d01b5afd2da4779efb2700469037eca6122be Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Sat, 11 May 2019 15:01:22 +0100 Subject: Implement a configuration file reader, an example configuration file, and start reading nick/username/realname from it instead of being statically defined. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 88487ec..3f8d034 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ CC=gcc -DEPS = functions.h sockets.h +DEPS = functions.h sockets.h config.h %.o: %.c $(DEPS) $(CC) -Wall -Wextra -c -o $@ $< -blabouncer: blabouncer.o functions.o sockets.o - $(CC) -Wall -Wextra -o blabouncer blabouncer.o functions.o sockets.o +blabouncer: blabouncer.o functions.o sockets.o config.o + $(CC) -Wall -Wextra -o blabouncer blabouncer.o functions.o sockets.o config.o -- cgit v1.2.3