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