diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-09 02:09:02 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2022-04-09 02:09:02 +0200 |
commit | ffc7c41f936abbe5c8baac129a3c21a277d29933 (patch) | |
tree | 42668c35ec740a4d47ab5fc5f766b28cd3e8b842 /Makefile | |
parent | de5ee6a519b86f5ff78e6849c5704243c8c9c109 (diff) |
Add logging lib
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,2 +1,4 @@ -all: main.c server.h - $(CC) -g -o papo main.c server.c +CFLAGS=-DLOG_USE_COLOR + +all: main.c server.c log.c + $(CC) $(CFLAGS) -g -o papo main.c server.c log.c |