]> git.armaanb.net Git - sic.git/blobdiff - config.mk
removed fullname, added support for tracking NICK changes
[sic.git] / config.mk
index 78fe6f85c1f5b6d604e67aa050232ebd41487a1c..56080461bcce6fd5dc7d5d8795df248901045986 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -1,18 +1,22 @@
-# Customize to fit your system
+# sic version
+VERSION = 0.9
+
+# Customize below to fit your system
 
 # paths
 PREFIX = /usr/local
 MANPREFIX = ${PREFIX}/share/man
 
-VERSION = 0.1
-
 # includes and libs
-LIBS = -L${PREFIX}/lib -L/usr/lib -lc
+INCS = -I. -I/usr/include
+LIBS = -L/usr/lib -lc
+
+# flags
+CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
+LDFLAGS = ${LIBS}
+#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
+#LDFLAGS = -g ${LIBS}
 
-# compiler
-CFLAGS      = -Os -I${PREFIX}/include -I/usr/include \
-                       -DVERSION=\"${VERSION}\"
-LDFLAGS     = ${LIBS}
-#CFLAGS      = -g -Wall -O2 -I${PREFIX}/include -I/usr/include \
-#                      -DVERSION=\"${VERSION}\"
-#LDFLAGS     = -g ${LIBS}
+# compiler and linker
+CC = cc
+LD = ${CC}