Home | History | Annotate | Line # | Download | only in libpthread
Makefile revision 1.10
      1 # $NetBSD: Makefile,v 1.10 2013/03/28 18:50:01 christos Exp $
      2 
      3 NOMAN=		# defined
      4 
      5 .include <bsd.own.mk>
      6 
      7 TESTSDIR=	${TESTSBASE}/lib/libpthread
      8 LDADD+=		-lpthread
      9 LDADD.t_fpu+=	-lm
     10 
     11 .include "${.PARSEDIR}/../csu/Makefile.check_stack"
     12 
     13 SRCS.t_join=	t_join.c ${SRCS_CHECK_STACK}
     14 CPPFLAGS.t_join.c+=	${CPPFLAGS_CHECK_STACK}
     15 
     16 TESTS_SH+=	t_atexit
     17 TESTS_C+=	t_barrier
     18 TESTS_SH+=	t_cancel
     19 TESTS_C+=	t_cond
     20 TESTS_C+=	t_condwait
     21 TESTS_C+=	t_detach
     22 TESTS_C+=	t_equal
     23 TESTS_SH+=	t_exit
     24 TESTS_C+=	t_fork
     25 TESTS_C+=	t_fpu
     26 TESTS_C+=	t_join
     27 TESTS_C+=	t_kill
     28 TESTS_C+=	t_mutex
     29 TESTS_C+=	t_name
     30 TESTS_C+=	t_once
     31 TESTS_C+=	t_preempt
     32 TESTS_SH+=	t_resolv
     33 TESTS_C+=	t_rwlock
     34 TESTS_C+=	t_sem
     35 TESTS_C+=	t_sigmask
     36 TESTS_C+=	t_sigsuspend
     37 TESTS_C+=	t_siglongjmp
     38 TESTS_C+=	t_sleep
     39 TESTS_C+=	t_swapcontext
     40 
     41 LDADD.t_sem+=	-lrt
     42 
     43 BINDIR=		${TESTSDIR}
     44 PROGS=		h_atexit
     45 PROGS+=		h_cancel
     46 PROGS+=		h_exit
     47 PROGS+=		h_resolv
     48 
     49 FILESDIR=	${TESTSDIR}
     50 FILES=		d_mach
     51 
     52 SUBDIR=		dlopen
     53 
     54 .include <bsd.test.mk>
     55