vlock 2.1
[vlock.git] / config.mk
blobf0f2a02c62f9d8ee5f3123a0ab23bad63722e151
1 # authentification method (pam or shadow)
2 AUTH_METHOD = pam
3 # use pam for permission checking
4 USE_PAM = n
5 # also prompt for the root password in adition to the user's
6 USE_ROOT_PASS = y
7 # shell to run vlock.sh with
8 BOURNE_SHELL = /bin/sh
10 # group to install vlock-all and vlock-nosysrq as
11 # defaults to 'root')
12 VLOCK_GROUP =
13 # mode to install vlock-all and vlock-nosysrq as
14 # defaults to 4711 if group is unset and 4710 otherwise
15 VLOCK_MODE =
17 # root's group
18 ROOT_GROUP = root
20 # installation prefix
21 PREFIX = /usr/local
22 # installation root
23 DESTDIR =
25 # c compiler
26 CC = gcc
27 # c compiler flags
28 CFLAGS = -O2 -Wall -W -pedantic -std=gnu99
29 # linker flags
30 LDFLAGS =
32 # linker flags needed for pam
33 PAM_LIBS = -ldl -lpam
35 # gnu install
36 INSTALL = install