aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2e26925..6f4c881 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,18 @@
PROJECT=agni
CC=gcc
-CFLAGS=-Wall
+CFLAGS=
make:
$(CC) $(CFLAGS) buf.c -c
$(CC) $(CFLAGS) mmm.c -c
$(CC) $(CFLAGS) darray.c -c
$(CC) $(CFLAGS) mq_cmd.c -c
+ $(CC) $(CFLAGS) mq_ntf.c -c
$(CC) $(CFLAGS) tbl_qcmd.c -c
$(CC) $(CFLAGS) util.c -c
$(CC) $(CFLAGS) sock_conn.c -c
$(CC) $(CFLAGS) irc_parse.c -c
- $(CC) $(CFLAGS) tbl_qcmd.o mq_cmd.o buf.o mmm.o darray.o util.o sock_conn.o \
+ $(CC) $(CFLAGS) tbl_qcmd.o mq_cmd.o mq_ntf.o buf.o mmm.o darray.o util.o sock_conn.o \
irc_parse.o agni.c \
-o $(PROJECT) -std=c11 -lrt