diff options
| author | auric <auric7@protonmail.com> | 2025-09-07 22:23:09 -0500 |
|---|---|---|
| committer | auric <auric7@protonmail.com> | 2025-09-07 22:23:09 -0500 |
| commit | c1f57a70f482dab6d5c6326b17195aadce7fb63b (patch) | |
| tree | f986f567d6120b7a7941ca5a69729303ae5d28b6 /slock/config.mk | |
| parent | 4f1341c29047183a0f361e3af0437666ca3cc660 (diff) | |
slock
Diffstat (limited to 'slock/config.mk')
| -rw-r--r-- | slock/config.mk | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/slock/config.mk b/slock/config.mk new file mode 100644 index 0000000..dcd27d0 --- /dev/null +++ b/slock/config.mk @@ -0,0 +1,29 @@ +# slock version +VERSION = 1.6 + +# 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 -lcrypt -L${X11LIB} -lX11 -lXext -lXrandr + +# flags +CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -DHAVE_SHADOW_H +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 = |
