summaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..affaddb
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,17 @@
+# Cras version
+VERSION = 0.0.0
+
+# Customize below to your needs
+
+# Paths
+PREFIX = /usr/local
+
+# Flags
+CPPFLAGS = -DVERSION=\"${VERSION}\" -D_POSIX_C_SOURCE=200809L
+#CFLAGS = -g -std=c99 -Wpedantic -Wall -Wextra ${CPPFLAGS}
+CFLAGS = -std=c99 -Wpedantic -Wall -Wextra ${CPPFLAGS}
+#LDFLAGS = -static
+
+# Compiler and linker
+CC = cc
+