diff options
| author | NPScript <nathan.p.reiner@gmail.com> | 2021-02-22 12:08:25 +0100 |
|---|---|---|
| committer | NPScript <nathan.p.reiner@gmail.com> | 2021-02-22 12:08:25 +0100 |
| commit | 0370484f394512a3240f1efe6cebe61744ea780e (patch) | |
| tree | f6d9c7c68136f5c7a183b7a15da88fca83b4df4d /config.mk | |
init commit
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..4597729 --- /dev/null +++ b/config.mk @@ -0,0 +1,34 @@ +# 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 +FREETPYEINC = /usr/include/freetype2 +FREETYPELIBS = -lfontconfig -lXft + +# includes and libs +INCS = -I. -I/usr/include -I${X11INC} -I${FREETPYEINC} +LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext -lXrandr ${FREETYPELIBS} + +# 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 util.c drw.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 |