summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..6b45112
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,15 @@
+# Customize to fit your system
+
+# paths
+PREFIX = /usr/local
+MANPREFIX = ${PREFIX}/share/man
+
+VERSION = 0.0
+
+# includes and libs
+LIBS = -L${PREFIX}/lib -L/usr/lib -lc
+
+# compiler
+CFLAGS = -g -Wall -O2 -I${PREFIX}/include -I/usr/include \
+ -DVERSION=\"${VERSION}\"
+LDFLAGS = -g ${LIBS}