forked from chjj/slock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.mk
More file actions
34 lines (25 loc) · 885 Bytes
/
config.mk
File metadata and controls
34 lines (25 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# slock version
VERSION = 2.0
# Customize below to fit your system
# paths
PREFIX = /usr/local
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
# includes and libs
INCS = -I. -I/usr/include -I${X11INC} -I/usr/include/freetype2 \
-I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 \
-I/usr/lib/glib-2.0/include -I/usr/include/sysprof-6 -pthread
LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext \
-lXft -lfontconfig -lfreetype -lm -lImlib2
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H
CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
LDFLAGS = -s ${LIBS}
# On *BSD remove -DHAVE_SHADOW_H from CPPFLAGS and add -DHAVE_BSD_AUTH
# On OpenBSD and Darwin remove -lcrypt from LIBS
# compiler and linker
CC = cc
# Install mode. On BSD systems MODE=2755 and GROUP=auth
# On others MODE=4755 and GROUP=root
#MODE=2755
#GROUP=auth