aboutsummaryrefslogtreecommitdiff
path: root/slockf/config.mk
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-01-17 19:44:16 -0500
committerBradley Taunt <bt@btxx.org>2024-01-17 19:44:16 -0500
commitc47aa4c4279beb700ec18c83fcf74aafc77d76a4 (patch)
tree76692ddf485c4453b366ce8df41e35c879cac9d3 /slockf/config.mk
Initial commit to cgit and place all suckless programs within installer
Diffstat (limited to 'slockf/config.mk')
-rwxr-xr-xslockf/config.mk32
1 files changed, 32 insertions, 0 deletions
diff --git a/slockf/config.mk b/slockf/config.mk
new file mode 100755
index 0000000..1700969
--- /dev/null
+++ b/slockf/config.mk
@@ -0,0 +1,32 @@
+# slock version
+VERSION = 1.5
+
+# Customize below to fit your system
+
+# paths
+PREFIX = /usr/local
+MANPREFIX = ${PREFIX}/share/man
+
+X11INC = /usr/local/include
+X11LIB = /usr/local/lib
+
+# includes and libs
+INCS = -I. -I/usr/include -I${X11INC}
+LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext -lXrandr
+
+# flags
+CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE
+CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+LDFLAGS = -s ${LIBS}
+COMPATSRC = explicit_bzero.c
+
+# On OpenBSD and Darwin remove -lcrypt from LIBS
+#LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lXext -lXrandr
+# On *BSD remove -DHAVE_SHADOW_H from CPPFLAGS
+# On NetBSD add -D_NETBSD_SOURCE to CPPFLAGS
+#CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE -D_NETBSD_SOURCE
+# On OpenBSD set COMPATSRC to empty
+#COMPATSRC =
+
+# compiler and linker
+CC = cc