You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
682 B
30 lines
682 B
# slock version |
|
VERSION = 1.2 |
|
|
|
# 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} |
|
LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext -lXrandr |
|
|
|
# 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
|
|
|