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