summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.mk10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.mk b/config.mk
index 5be8319..4489242 100644
--- a/config.mk
+++ b/config.mk
@@ -4,10 +4,14 @@ VERSION = prealpha
# paths
PREFIX = /usr/local
-# flags
CFLAGS = -ansi -pedantic -Wall -Wextra -Werror -g -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\"
-LDFLAGS = -static #-s
-# compiler and linker
+# musl static
CC = musl-gcc
+LDFLAGS = -static #-s
+
+# glibc dynamic
+#CC = cc
+#LDFLAGS =
+
LD = ld