diff --git a/lib/csu/tests/dso/Makefile b/lib/csu/tests/dso/Makefile index 6c1d00e9fb58..431168de0328 100644 --- a/lib/csu/tests/dso/Makefile +++ b/lib/csu/tests/dso/Makefile @@ -1,23 +1,25 @@ .PATH: ${.CURDIR:H} + +PACKAGE= tests SHLIB= h_csu SHLIB_NAME= libh_csu.so SHLIB_MAJOR= 1 WITHOUT_STATIC= WITHOUT_PROFILE= WITHOUT_PIC= CFLAGS+= -DDSO_LIB .include "../Makefile.tests" SRCS= .for src in ${ATF_TESTS_C} SRCS+= ${src}.c .endfor .for src in ${ATF_TESTS_CXX} SRCS+= ${src}.cc .endfor LIBDIR= ${TESTSBASE}/lib/csu/dynamiclib .include diff --git a/lib/libthr/tests/dlopen/dso/Makefile b/lib/libthr/tests/dlopen/dso/Makefile index 0dac101f7186..74d8ada35ff1 100644 --- a/lib/libthr/tests/dlopen/dso/Makefile +++ b/lib/libthr/tests/dlopen/dso/Makefile @@ -1,15 +1,16 @@ TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libpthread/dlopen/dso WARNS?= 3 +PACKAGE= tests SHLIB= h_pthread_dlopen SHLIB_MAJOR= 1 SHLIB_NAME= h_pthread_dlopen.so.${SHLIB_MAJOR} SRCS= h_pthread_dlopen.c LIBADD+= pthread LIBDIR= ${TESTSBASE}/lib/libthr/dlopen .include .include diff --git a/tests/sys/vm/soxstack/Makefile b/tests/sys/vm/soxstack/Makefile index bd159c2fde75..f9f3bd55b50a 100644 --- a/tests/sys/vm/soxstack/Makefile +++ b/tests/sys/vm/soxstack/Makefile @@ -1,15 +1,16 @@ +PACKAGE= tests SHLIB= soxstack SHLIB_NAME= libsoxstack.so SHLIB_MAJOR= 1 WITHOUT_STATIC= WITHOUT_PROFILE= WITHOUT_PIC= SRCS= soxstack.c LDFLAGS+= -Wl,-z,execstack LIBADD+= procstat LIBDIR= ${TESTSBASE}/sys/vm/stack .include