opnsense-src/tests/sys/vm/soxstack/Makefile
Lexi Winter e4cacb6623 tests: move some files to the tests package
some test support libraries had escaped confinement and were found
wandering around the utilities package:

	/usr/tests/lib/csu/dynamiclib/libh_csu.so
	/usr/tests/lib/libthr/dlopen/h_pthread_dlopen.so
	/usr/tests/lib/libthr/dlopen/h_pthread_dlopen.so.1
	/usr/tests/sys/vm/stack/libsoxstack.so

these aren't built using bsd.test.mk, so they don't get the default
PACKAGE=tests option; set this by hand in their Makefiles to put them
back where they belong.

Reviewed by:	manu, des, emaste
Approved by:	des (mentor)
Differential Revision:	https://reviews.freebsd.org/D50147
2025-05-05 16:39:25 +01:00

16 lines
244 B
Makefile

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 <bsd.lib.mk>