summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorNick White <hg@njw.me.uk>2011-08-01 18:26:56 +0100
committerNick White <hg@njw.me.uk>2011-08-01 18:26:56 +0100
commit063a0de3c10d38741c939297bb19d8284757e00c (patch)
treeff7b00c71dfc1bdd08b4fd1c143aaef5a0e12b9f /config.mk
parentaccfeb090db432165ebc7e80ddce5ab673631af4 (diff)
Lots of tightening and cleanups
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.mk b/config.mk
index 321a1ec..500e53d 100644
--- a/config.mk
+++ b/config.mk
@@ -1,4 +1,4 @@
-# See COPYING file for copyright, license and warranty details.
+# See COPYING file for copyright and license details.
VERSION = prealpha
# paths
@@ -8,11 +8,11 @@ CFLAGS = -ansi -pedantic -Wall -Wextra -Werror -g -D_POSIX_C_SOURCE=200112L \
-DVERSION=\"$(VERSION)\"
# musl static
-CC = musl-gcc
-LDFLAGS = -static #-s
+#CC = musl-gcc
+#LDFLAGS = -static #-s
# glibc dynamic
-#CC = cc
-#LDFLAGS =
+CC = cc
+LDFLAGS =
LD = $(CC)