diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-13 04:55:31 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-13 04:55:31 +0200 |
commit | 91d0b99b0fd0a6d12093af41b0147db52b335e49 (patch) | |
tree | 2161f007b44789a6ae46108ce1a69230770084f1 /Makefile | |
parent | 729aac88a58b6589c0d1aeb82bd729b886555771 (diff) |
server: Add support to PRIVMSG message
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |