summaryrefslogtreecommitdiff
path: root/utils/tabbed/config.mk
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2022-06-20 19:54:29 +0000
committerstkhan <personal@slickd.xyz>2022-06-20 19:54:29 +0000
commit4c40a4dc245f7715f4891ed02d71475628e7a959 (patch)
treefa52419490b5a0d89d746f6e3a0b0c1e675b7726 /utils/tabbed/config.mk
parent513b0e238b98f72a01d740a0bd99a3739918645c (diff)
new directory structure
Diffstat (limited to 'utils/tabbed/config.mk')
-rw-r--r--utils/tabbed/config.mk25
1 files changed, 25 insertions, 0 deletions
diff --git a/utils/tabbed/config.mk b/utils/tabbed/config.mk
new file mode 100644
index 0000000..426c93b
--- /dev/null
+++ b/utils/tabbed/config.mk
@@ -0,0 +1,25 @@
+include ../../config.mk
+# tabbed version
+VERSION = 0.6
+
+# Customize below to fit your system
+
+# paths
+MANPREFIX = ${PREFIX}/share/man
+
+# includes and libs
+INCS = -I. -I/usr/include
+LIBS = -L/usr/lib -lc -lX11
+
+# flags
+CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
+CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
+LDFLAGS = -s ${LIBS}
+
+# Solaris
+#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
+#LDFLAGS = ${LIBS}
+
+# compiler and linker
+CC = cc
+