aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2017-03-05 22:44:01 +0000
committerFreeArtMan <dos21h@gmail.com>2017-03-05 22:44:01 +0000
commitb04690e9015d3263b2ee2bb42dd7a9891fc4d89b (patch)
tree6e31dbecceaf91797a77669aaeb5f7c0f10a3738 /Makefile
parentaec990a7c389903f079bb5361319ba8af5e9fc98 (diff)
downloadagni-b04690e9015d3263b2ee2bb42dd7a9891fc4d89b.tar.gz
agni-b04690e9015d3263b2ee2bb42dd7a9891fc4d89b.zip
Removed mq_ntf from main code. Commented out some messages
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