summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorAaron Marcher <info@nulltime.net>2016-03-04 18:07:42 +0100
committerAaron Marcher (drkhsh) <info@nulltime.net>2016-03-04 18:07:42 +0100
commit94ea78f0fe394fc6b42dc0d83be9abf3d1c77ea0 (patch)
tree12836f8215f86ba5aa2e7253eab00c711e206437 /config.mk
parent47a0e8dec3f146bc14934bb2e2516fa3b6fdc926 (diff)
initial commit
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/config.mk b/config.mk
new file mode 100644
index 0000000..75ba482
--- /dev/null
+++ b/config.mk
@@ -0,0 +1,30 @@
+NAME = slstatus
+VERSION = 1.0
+
+# Customize below to fit your system
+
+# paths
+PREFIX = /usr/local
+MANPREFIX = ${PREFIX}/share/man
+
+X11INC = /usr/X11R6/include
+X11LIB = /usr/X11R6/lib
+
+# includes and libs
+INCS = -I. -I/usr/include -I${X11INC}
+LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound
+
+# flags
+CPPFLAGS = -DVERSION=\"${VERSION}\"
+CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
+#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+LDFLAGS = -g ${LIBS}
+#LDFLAGS = -s ${LIBS}
+
+# Solaris
+#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
+#LDFLAGS = ${LIBS}
+
+# compiler and linker
+CC = cc
+