xref: /freebsd/lib/libproc/tests/Makefile (revision 325151a3)
1# $FreeBSD$
2
3ATF_TESTS_C+=	proc_test
4
5PROGS=		target_prog
6SRCS_target_prog=	target_prog.c
7BINDIR_target_prog=	${TESTSDIR}
8
9LDADD+=	-lelf -lproc -lrtld_db -lutil
10DPADD+=	${LIBELF} ${LIBPROC} ${LIBRTLD_DB} ${LIBUTIL}
11
12# Ensure that symbols aren't stripped from the test program, as they're needed
13# for testing symbol lookup.
14STRIP=
15
16WARNS?=	6
17
18.include <bsd.test.mk>
19