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