1# $FreeBSD: stable/10/lib/libstdthreads/Makefile 313604 2017-02-11 06:37:24Z ngie $
2
3LIB=	stdthreads
4SHLIB_MAJOR= 0
5
6INCS=	threads.h
7SRCS=	threads.h call_once.c cnd.c mtx.c thrd.c tss.c
8
9MAN=	thrd_create.3
10MLINKS=	thrd_create.3 call_once.3 \
11	thrd_create.3 cnd_broadcast.3 \
12	thrd_create.3 cnd_destroy.3 \
13	thrd_create.3 cnd_init.3 \
14	thrd_create.3 cnd_signal.3 \
15	thrd_create.3 cnd_timedwait.3 \
16	thrd_create.3 cnd_wait.3 \
17	thrd_create.3 mtx_destroy.3 \
18	thrd_create.3 mtx_init.3 \
19	thrd_create.3 mtx_lock.3 \
20	thrd_create.3 mtx_timedlock.3 \
21	thrd_create.3 mtx_trylock.3 \
22	thrd_create.3 mtx_unlock.3 \
23	thrd_create.3 thrd_current.3 \
24	thrd_create.3 thrd_detach.3 \
25	thrd_create.3 thrd_equal.3 \
26	thrd_create.3 thrd_exit.3 \
27	thrd_create.3 thrd_join.3 \
28	thrd_create.3 thrd_sleep.3 \
29	thrd_create.3 thrd_yield.3 \
30	thrd_create.3 tss_create.3 \
31	thrd_create.3 tss_delete.3 \
32	thrd_create.3 tss_get.3 \
33	thrd_create.3 tss_set.3
34
35DPADD=	${LIBPTHREAD}
36LDADD=	-lpthread
37
38VERSION_DEF= ${SRCTOP}/lib/libc/Versions.def
39SYMBOL_MAPS= ${.CURDIR}/Symbol.map
40
41.include <bsd.lib.mk>
42