1228904Sed# $FreeBSD: stable/11/lib/libstdthreads/Makefile 313538 2017-02-10 07:32:40Z ngie $
2228904Sed
3298107SgjbPACKAGE=lib${LIB}
4228904SedLIB=	stdthreads
5228904SedSHLIB_MAJOR= 0
6228904Sed
7228904SedINCS=	threads.h
8228904SedSRCS=	threads.h call_once.c cnd.c mtx.c thrd.c tss.c
9228904Sed
10228904SedMAN=	thrd_create.3
11228904SedMLINKS=	thrd_create.3 call_once.3 \
12228904Sed	thrd_create.3 cnd_broadcast.3 \
13228904Sed	thrd_create.3 cnd_destroy.3 \
14228904Sed	thrd_create.3 cnd_init.3 \
15228904Sed	thrd_create.3 cnd_signal.3 \
16228904Sed	thrd_create.3 cnd_timedwait.3 \
17228904Sed	thrd_create.3 cnd_wait.3 \
18228904Sed	thrd_create.3 mtx_destroy.3 \
19228904Sed	thrd_create.3 mtx_init.3 \
20228904Sed	thrd_create.3 mtx_lock.3 \
21228904Sed	thrd_create.3 mtx_timedlock.3 \
22228904Sed	thrd_create.3 mtx_trylock.3 \
23228904Sed	thrd_create.3 mtx_unlock.3 \
24228904Sed	thrd_create.3 thrd_current.3 \
25228904Sed	thrd_create.3 thrd_detach.3 \
26228904Sed	thrd_create.3 thrd_equal.3 \
27228904Sed	thrd_create.3 thrd_exit.3 \
28228904Sed	thrd_create.3 thrd_join.3 \
29228904Sed	thrd_create.3 thrd_sleep.3 \
30228904Sed	thrd_create.3 thrd_yield.3 \
31228904Sed	thrd_create.3 tss_create.3 \
32228904Sed	thrd_create.3 tss_delete.3 \
33228904Sed	thrd_create.3 tss_get.3 \
34228904Sed	thrd_create.3 tss_set.3
35228904Sed
36275024SbaptLIBADD=	pthread
37228904Sed
38313538SngieVERSION_DEF= ${SRCTOP}/lib/libc/Versions.def
39228904SedSYMBOL_MAPS= ${.CURDIR}/Symbol.map
40228904Sed
41228904Sed.include <bsd.lib.mk>
42