1228904Sed# $FreeBSD: releng/10.3/lib/libstdthreads/Makefile 228904 2011-12-26 21:51:53Z ed $
2228904Sed
3228904SedLIB=	stdthreads
4228904SedSHLIB_MAJOR= 0
5228904Sed
6228904SedINCS=	threads.h
7228904SedSRCS=	threads.h call_once.c cnd.c mtx.c thrd.c tss.c
8228904Sed
9228904SedMAN=	thrd_create.3
10228904SedMLINKS=	thrd_create.3 call_once.3 \
11228904Sed	thrd_create.3 cnd_broadcast.3 \
12228904Sed	thrd_create.3 cnd_destroy.3 \
13228904Sed	thrd_create.3 cnd_init.3 \
14228904Sed	thrd_create.3 cnd_signal.3 \
15228904Sed	thrd_create.3 cnd_timedwait.3 \
16228904Sed	thrd_create.3 cnd_wait.3 \
17228904Sed	thrd_create.3 mtx_destroy.3 \
18228904Sed	thrd_create.3 mtx_init.3 \
19228904Sed	thrd_create.3 mtx_lock.3 \
20228904Sed	thrd_create.3 mtx_timedlock.3 \
21228904Sed	thrd_create.3 mtx_trylock.3 \
22228904Sed	thrd_create.3 mtx_unlock.3 \
23228904Sed	thrd_create.3 thrd_current.3 \
24228904Sed	thrd_create.3 thrd_detach.3 \
25228904Sed	thrd_create.3 thrd_equal.3 \
26228904Sed	thrd_create.3 thrd_exit.3 \
27228904Sed	thrd_create.3 thrd_join.3 \
28228904Sed	thrd_create.3 thrd_sleep.3 \
29228904Sed	thrd_create.3 thrd_yield.3 \
30228904Sed	thrd_create.3 tss_create.3 \
31228904Sed	thrd_create.3 tss_delete.3 \
32228904Sed	thrd_create.3 tss_get.3 \
33228904Sed	thrd_create.3 tss_set.3
34228904Sed
35228904SedDPADD=	${LIBPTHREAD}
36228904SedLDADD=	-lpthread
37228904Sed
38228904SedVERSION_DEF= ${.CURDIR}/../libc/Versions.def
39228904SedSYMBOL_MAPS= ${.CURDIR}/Symbol.map
40228904Sed
41228904Sed.include <bsd.lib.mk>
42