1# $NetBSD: Makefile,v 1.1 2015/09/24 14:12:48 christos Exp $ 2 3NOMAN=yes 4.include <bsd.own.mk> 5 6TESTSDIR= ${TESTSBASE}/lib/libproc 7 8.PATH: ${.CURDIR}/../dist/tests 9 10TESTS_C+= proc_test 11 12BINDIR= ${TESTSDIR} 13PROGS= target_prog 14 15LDADD+= -lelf -lproc -lrtld_db -lutil 16DPADD+= ${LIBELF} ${LIBPROC} ${LIBRTLD_DB} ${LIBUTIL} 17 18# Ensure that symbols aren't stripped from the test program, as they're needed 19# for testing symbol lookup. 20STRIP= 21 22WARNS?= 6 23 24.include <bsd.test.mk> 25