summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2019-04-18 15:02:07 +0200
committerLuke Bratch <luke@bratch.co.uk>2019-04-18 15:02:07 +0200
commitfdbbc1afcec71c7a447d3fba98db2896289dd7e0 (patch)
treecd63bfaf9f01d12ea29f1b3ae314ffe6ae5b4445 /Makefile
parenta519e3c9ded2342df72d1aa885d0a2173cfbf1c4 (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--Makefile4
1 files changed, 2 insertions, 2 deletions
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