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