Home | History | Annotate | Line # | Download | only in tests
      1 # $NetBSD: Makefile,v 1.1 2015/09/24 14:12:48 christos Exp $
      2 
      3 NOMAN=yes
      4 .include <bsd.own.mk>
      5 
      6 TESTSDIR=	${TESTSBASE}/lib/libproc
      7 
      8 .PATH: ${.CURDIR}/../dist/tests
      9 
     10 TESTS_C+=	proc_test
     11 
     12 BINDIR=         ${TESTSDIR}
     13 PROGS=		target_prog
     14 
     15 LDADD+=	-lelf -lproc -lrtld_db -lutil
     16 DPADD+=	${LIBELF} ${LIBPROC} ${LIBRTLD_DB} ${LIBUTIL}
     17 
     18 # Ensure that symbols aren't stripped from the test program, as they're needed
     19 # for testing symbol lookup.
     20 STRIP=
     21 
     22 WARNS?=	6
     23 
     24 .include <bsd.test.mk>
     25