mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 06:29:51 -04:00
22 lines
491 B
Makefile
22 lines
491 B
Makefile
# $NetBSD: Makefile,v 1.4 2011/05/26 12:56:26 joerg 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 rmutex.c tpool.c rq.c \
|
|
thr_posix.c thr_cthreads.c thr_thr.c thr_lwp.c thr_nt.c \
|
|
thr_pth.c thr_stub.c thr_debug.c
|
|
|
|
CPPFLAGS+= -DLDAP_R_COMPILE
|
|
|
|
COPTS+= -pthread
|
|
LIBDPLIBS+= pthread ${.CURDIR}/../../../../../lib/libpthread
|
|
|
|
.include <bsd.lib.mk>
|