xref: /freebsd/lib/libproc/tests/Makefile (revision 8cc087a1eee9ec1ca9f7ac1e63ad51bdb5a682eb)
1# $FreeBSD$
2
3ATF_TESTS_C+=	proc_test
4
5PROGS=		target_prog
6SRCS_target_prog=	target_prog.c
7BINDIR_target_prog=	${TESTSDIR}
8
9LIBADD=	elf proc rtld_db util
10
11# Ensure that symbols aren't stripped from the test program, as they're needed
12# for testing symbol lookup.
13STRIP=
14CFLAGS.target_prog.c+= -O0
15
16.include <bsd.test.mk>
17