Home | History | Annotate | Line # | Download | only in libpthread
Makefile revision 1.5
      1 # $NetBSD: Makefile,v 1.5 2011/03/24 12:40:59 jruoho 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_equal
     21 TESTS_SH+=	t_exit
     22 TESTS_C+=	t_fork
     23 TESTS_C+=	t_fpu
     24 TESTS_C+=	t_join
     25 TESTS_C+=	t_kill
     26 TESTS_C+=	t_mutex
     27 TESTS_C+=	t_name
     28 TESTS_C+=	t_once
     29 TESTS_C+=	t_preempt
     30 TESTS_SH+=	t_resolv
     31 TESTS_C+=	t_rwlock
     32 TESTS_C+=	t_sem
     33 TESTS_C+=	t_sigmask
     34 TESTS_C+=	t_sigsuspend
     35 TESTS_C+=	t_siglongjmp
     36 TESTS_C+=	t_sleep
     37 TESTS_C+=	t_status
     38 
     39 LDADD.t_sem+=	-lrt
     40 
     41 BINDIR=		${TESTSDIR}
     42 PROGS=		h_atexit
     43 PROGS+=		h_cancel
     44 PROGS+=		h_exit
     45 PROGS+=		h_resolv
     46 
     47 FILESDIR=	${TESTSDIR}
     48 FILES=		d_mach
     49 
     50 .include <bsd.test.mk>
     51