]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libstdthreads/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libstdthreads / Makefile
1 # $FreeBSD$
2
3 LIB=    stdthreads
4 SHLIB_MAJOR= 0
5
6 INCS=   threads.h
7 SRCS=   threads.h call_once.c cnd.c mtx.c thrd.c tss.c
8
9 MAN=    thrd_create.3
10 MLINKS= 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
35 DPADD=  ${LIBPTHREAD}
36 LDADD=  -lpthread
37
38 VERSION_DEF= ${.CURDIR}/../libc/Versions.def
39 SYMBOL_MAPS= ${.CURDIR}/Symbol.map
40
41 .include <bsd.lib.mk>