blob: 12f90656d69d4c3b84f356531105ef89fe58ba0a (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
BIN_TARGETS := \
s6-getservbyname \
s6-ident-client \
s6-tcpclient \
s6-tcpserver \
s6-tcpserver4 \
s6-tcpserver4d \
s6-tcpserver4-socketbinder \
s6-tcpserver6 \
s6-tcpserver6d \
s6-tcpserver6-socketbinder \
s6-tcpserver-access \
s6-clockadd \
s6-clockview \
s6-sntpclock \
s6-taiclock \
s6-taiclockd \
minidentd
LIBEXEC_TARGETS :=
LIB_DEFS := S6NET=s6net
EXTRA_TARGETS := src/minidentd/mgetuid.c
src/minidentd/mgetuid.c: src/minidentd/mgetuid-linux.c src/minidentd/mgetuid-default.c
@if grep -q -iF -- -linux $(sysdeps)/target 2>/dev/null ; then \
ln -sf mgetuid-linux.c src/minidentd/mgetuid.c ; \
else \
ln -sf mgetuid-default.c src/minidentd/mgetuid.c ; \
fi
ifneq ($(SSL_IMPL),)
BIN_TARGETS += s6-tlsclient s6-tlsc s6-tlsserver s6-tlsd
ifeq ($(SSL_IMPL),tls)
LIB_DEFS += CRYPTOSUPPORT=stls
CRYPTO_LIB := -ltls -lssl -lcrypto
else ifeq ($(SSL_IMPL),bearssl)
LIB_DEFS += CRYPTOSUPPORT=sbearssl
CRYPTO_LIB := -lbearssl
endif
endif
|