blob: 8b9cc54af388dbbc0d6524efa4e5a718b43e2c21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
LIBS=../../libcrypto
IF[{- !$disabled{'thread-pool'} -}]
$THREADS_ARCH=\
arch.c \
arch/thread_win.c arch/thread_posix.c arch/thread_none.c
$THREADS=\
api.c internal.c $THREADS_ARCH
IF[{- !$disabled{quic} -}]
SHARED_SOURCE[../../libssl]=$THREADS_ARCH
ENDIF
ELSE
$THREADS=api.c
ENDIF
SOURCE[../../libcrypto]=$THREADS
SOURCE[../../providers/libfips.a]=$THREADS
|