summaryrefslogtreecommitdiff
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..3b54689
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,17 @@
+# cmarkdown version
+VERSION = 0.1
+
+# paths
+PREFIX = /usr/local
+MANPREFIX = ${PREFIX}/share/man
+
+# includes and libs
+INCS = -I. -I/usr/include
+LIBS = -L/usr/lib
+
+# flags
+CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
+LDFLAGS = -s ${LIBS}
+
+# compiler
+CC = cc