summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authoranselm@aab <unknown>2008-07-06 13:29:19 +0100
committeranselm@aab <unknown>2008-07-06 13:29:19 +0100
commit8a58b25cb7f239efa2f3df7c8aa088030f12aeda (patch)
tree86fc705b3c45f7c37317c7206635e298a73e3ce7 /config.mk
parent589cce35c508fad53a7948472a33897fda0facdc (diff)
downloadcic-8a58b25cb7f239efa2f3df7c8aa088030f12aeda.tar.gz
updated sic
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk7
1 files changed, 3 insertions, 4 deletions
diff --git a/config.mk b/config.mk
index 96bd531..fe059aa 100644
--- a/config.mk
+++ b/config.mk
@@ -12,10 +12,9 @@ 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}
+CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
+CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+LDFLAGS = -s ${LIBS}
# compiler and linker
CC = cc