dd1f618367
netbsd-tests.test.mk (r289151) - Eliminate explicit OBJTOP/SRCTOP setting - Convert all ad hoc NetBSD test integration over to netbsd-tests.test.mk - Remove unnecessary TESTSDIR setting - Use SRCTOP where possible for clarity MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Divison
19 lines
366 B
Makefile
19 lines
366 B
Makefile
# $FreeBSD$
|
|
|
|
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=
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|