blob: e7b8b54b4472e14d925bb16a08a0ab3bc13d4f43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
BIN_TARGETS := \
nsssd-unix \
nsssd-nslcd \
nsssd-switch
LIBEXEC_TARGETS :=
TEST_BINS := \
test-switch \
test-unix \
test-nsssd-switch \
test-all-fallback
LIB_DEFS := NSSS=nsss NSSSD=nsssd
NSSS_DESCRIPTION := The nsss library (user-facing part of nsss, applications link against it)
NSSSD_DESCRIPTION := The nsssd library (non-user-facing part of nsss, only nsss modules link against it)
ifneq ($(DO_LIBC_INCLUDES),)
EXTRA_INCLUDES := src/include/pwd.h src/include/grp.h src/include/shadow.h
endif
|