summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2022-04-13 04:55:31 +0200
committerJohnny Richard <johnny@johnnyrichard.com>2022-04-13 04:55:31 +0200
commit91d0b99b0fd0a6d12093af41b0147db52b335e49 (patch)
tree2161f007b44789a6ae46108ce1a69230770084f1 /Makefile
parent729aac88a58b6589c0d1aeb82bd729b886555771 (diff)
server: Add support to PRIVMSG message
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 22d10a7..32c0a02 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
CC=gcc
.PHONY: all
-all: main.c server.o log.o hash_table.o
- $(CC) -g -o papo main.c server.o log.o hash_table.o
+all: main.c server.c log.o hash_table.o
+ $(CC) -ggdb -o papo main.c server.c log.o hash_table.o
.PHONY: test
test: all