diff options
author | Marvin Borner | 2022-05-31 14:34:49 +0200 |
---|---|---|
committer | Marvin Borner | 2022-05-31 14:39:35 +0200 |
commit | a56b6a121b31b82dcf7279e6eea60bbca1852fc5 (patch) | |
tree | 7627bb839310c4a4a3632b378ebe87bc031f61ff /.repos/slock/config.mk | |
parent | b8be82d9113dd0fec9021aa573039cc64dbd849a (diff) |
Sync
Diffstat (limited to '.repos/slock/config.mk')
-rw-r--r-- | .repos/slock/config.mk | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.repos/slock/config.mk b/.repos/slock/config.mk new file mode 100644 index 0000000..1826ca1 --- /dev/null +++ b/.repos/slock/config.mk @@ -0,0 +1,40 @@ +# slock version +VERSION = 1.4 + +# Customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = ${PREFIX}/share/man + +X11INC = /usr/X11R6/include +X11LIB = /usr/X11R6/lib + +# Xinerama, comment if you don't want it +XINERAMALIBS = -lXinerama +XINERAMAFLAGS = -DXINERAMA + +# freetype +FREETYPELIBS = -lXft +FREETYPEINC = /usr/include/freetype2 + +# includes and libs +INCS = -I. -I/usr/include -I${X11INC} -I${FREETYPEINC} +LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lXext -lXrandr -lpam + +# flags +CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE -DHAVE_SHADOW_H ${XINERAMAFLAGS} +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 |