xref: /freebsd/lib/libproc/tests/Makefile (revision 9978553d0199e7ec0bdd1c44fc7f6c7b0c11e43b)
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