mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-23 11:18:54 +00:00
9351ac6d69
Differential Revision: D710 Reviewed by: jmmv, ngie, rpaulo
22 lines
407 B
Makefile
22 lines
407 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib/libproc
|
|
|
|
ATF_TESTS_C+= proc_test
|
|
|
|
PROGS= target_prog
|
|
SRCS_target_prog= target_prog.c
|
|
BINDIR_target_prog= ${TESTSDIR}
|
|
|
|
LDADD+= -lelf -lproc -lrtld_db -lutil
|
|
DPADD+= ${LIBELF} ${LIBPROC} ${LIBRTLD_DB} ${LIBUTIL}
|
|
|
|
# Ensure that symbols aren't stripped from the test program, as they're needed
|
|
# for testing symbol lookup.
|
|
STRIP=
|
|
|
|
MAN=
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|