1 ### configuration options ###
3 # operating system, determines some defaults
4 UNAME
:= $(shell uname
)
5 # authentification method (pam or shadow)
7 # use pam for permission checking
9 # also prompt for the root password in adition to the user's
11 # enable plugins for vlock-main
13 # which plugins should be build, default is architecture dependent
16 # which scripts should be installed
19 # root's group, default is architecture dependent
22 # group to install vlock-main with, defaults to ROOT_GROUP
24 # mode to install privileged plugins with, defaults to 0750 if VLOCK_GROUP
25 # is unset and 0755 otherwise
37 # shell to run vlock.sh with (only bash is known to work)
38 BOURNE_SHELL
= /bin
/sh
50 ### compiler and linker settings ###
53 CFLAGS
= -O2
-Wall
-W
-pedantic
-std
=gnu99
55 CXXFLAGS
= -O2
-Wall
-W
-pedantic
58 # linker flags needed for dlopen and friends
60 # linker flags needed for crypt
62 # linker flags needed for pam
63 PAM_LIBS
= $(DL_LIB
) -lpam