aboutsummaryrefslogtreecommitdiff
path: root/tabbed/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tabbed/config.mk')
-rw-r--r--tabbed/config.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/tabbed/config.mk b/tabbed/config.mk
new file mode 100644
index 0000000..095cead
--- /dev/null
+++ b/tabbed/config.mk
@@ -0,0 +1,24 @@
+# tabbed version
+VERSION = 0.6
+
+# Customize below to fit your system
+
+# paths
+PREFIX = /usr/local
+MANPREFIX = ${PREFIX}/share/man
+
+# includes and libs
+INCS = -I. -I/usr/include -I/usr/include/freetype2
+LIBS = -L/usr/lib -lc -lX11 -lfontconfig -lXft -lXrender
+
+# flags
+CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
+CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+LDFLAGS = -s ${LIBS}
+
+# Solaris
+#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
+#LDFLAGS = ${LIBS}
+
+# compiler and linker
+CC = cc