diff options
author | Luke Bratch <luke@bratch.co.uk> | 2019-04-18 15:02:07 +0200 |
---|---|---|
committer | Luke Bratch <luke@bratch.co.uk> | 2019-04-18 15:02:07 +0200 |
commit | fdbbc1afcec71c7a447d3fba98db2896289dd7e0 (patch) | |
tree | cd63bfaf9f01d12ea29f1b3ae314ffe6ae5b4445 /Makefile | |
parent | a519e3c9ded2342df72d1aa885d0a2173cfbf1c4 (diff) |
First actual "bouncer" features - self connects and registers (NICK/USER) and automatically handles PING/PONG response/requests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |