From fdbbc1afcec71c7a447d3fba98db2896289dd7e0 Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Thu, 18 Apr 2019 15:02:07 +0200 Subject: First actual "bouncer" features - self connects and registers (NICK/USER) and automatically handles PING/PONG response/requests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index be285b6..88487ec 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC=gcc DEPS = functions.h sockets.h %.o: %.c $(DEPS) - $(CC) -c -o $@ $< + $(CC) -Wall -Wextra -c -o $@ $< blabouncer: blabouncer.o functions.o sockets.o - $(CC) -o blabouncer blabouncer.o functions.o sockets.o + $(CC) -Wall -Wextra -o blabouncer blabouncer.o functions.o sockets.o -- cgit v1.2.3