Home | History | Annotate | Line # | Download | only in tests
      1 # $FreeBSD: head/lib/libproc/tests/Makefile 271937 2014-09-21 21:25:41Z markj $
      2 
      3 TESTSDIR=	${TESTSBASE}/lib/libproc
      4 
      5 ATF_TESTS_C+=	proc_test
      6 
      7 PROGS=		target_prog
      8 SRCS_target_prog=	target_prog.c
      9 BINDIR_target_prog=	${TESTSDIR}
     10 
     11 LDADD+=	-lelf -lproc -lrtld_db -lutil
     12 DPADD+=	${LIBELF} ${LIBPROC} ${LIBRTLD_DB} ${LIBUTIL}
     13 
     14 # Ensure that symbols aren't stripped from the test program, as they're needed
     15 # for testing symbol lookup.
     16 STRIP=
     17 
     18 MAN=
     19 WARNS?=	6
     20 
     21 .include <bsd.test.mk>
     22