blob: 91e1f29f0c424c6215894edf4f761e63b4b08e0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile,v 1.7 2021/08/17 01:59:16 mrg Exp $
USE_FORT?= yes
CWARNFLAGS.clang= -Wno-format-extra-args
.include "../libldap/Makefile.libldap"
LIB= ldap_r
.PATH: ${LDAP_DISTDIR}/libraries/libldap_r
SRCS+= threads.c rdwr.c rq.c \
thr_posix.c thr_thr.c thr_nt.c \
thr_pth.c thr_debug.c tpool.c
COPTS+= -pthread
LIBDPLIBS+= pthread ${.CURDIR}/../../../../../lib/libpthread
.include <bsd.lib.mk>
|