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