opnsense-src/lib/libthr/tests/dlopen/Makefile
Bryan Drewery eacae6dc66 Fix LDADD/DPADD that should be LIBADD.
Sponsored by:	EMC / Isilon Storage Division
2015-12-04 03:17:47 +00:00

27 lines
570 B
Makefile

# $FreeBSD$
TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libpthread/dlopen
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/lib/libthr/dlopen
CFLAGS+= -DTESTDIR=\"${TESTSDIR:Q}/\"
LDFLAGS+= -L${.OBJDIR}/dso -Wl,-rpath=${TESTDIR}
.if !defined(NO_PIC)
SUBDIR+= dso
NETBSD_ATF_TESTS_C= dlopen_test
NETBSD_ATF_TESTS_C+= main_pthread_create_test
# XXX: this blocks running the testcase
#NETBSD_ATF_TESTS_C+= dso_pthread_create_test
.for t in dlopen_test main_pthread_create_test
LIBADD.${t}+= pthread
.endfor
.endif
.include <netbsd-tests.test.mk>
.include <bsd.test.mk>