diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2020-11-10 19:09:35 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2020-11-10 19:09:35 +0000 |
| commit | 9ebe945bd791f25fe5f4774205cbf07eabca348b (patch) | |
| tree | b345bf50af34ef143246a26e608d7cc92f6f133e /lib | |
| parent | f9fd7337f63698f33239c58c07bf430198235a22 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/csu/tests/Makefile | 1 | ||||
| -rw-r--r-- | lib/csu/tests/dynamic/Makefile | 3 | ||||
| -rw-r--r-- | lib/csu/tests/dynamicpie/Makefile | 9 |
3 files changed, 13 insertions, 0 deletions
diff --git a/lib/csu/tests/Makefile b/lib/csu/tests/Makefile index a1d4cee40036..3533fd396506 100644 --- a/lib/csu/tests/Makefile +++ b/lib/csu/tests/Makefile @@ -3,6 +3,7 @@ SUBDIR= dso TESTS_SUBDIRS= dynamic TESTS_SUBDIRS+= dynamiclib +TESTS_SUBDIRS+= dynamicpie TESTS_SUBDIRS+= static SUBDIR_DEPEND_dynamiclib=dso diff --git a/lib/csu/tests/dynamic/Makefile b/lib/csu/tests/dynamic/Makefile index 190962f9c3cc..266f5c5a7d0d 100644 --- a/lib/csu/tests/dynamic/Makefile +++ b/lib/csu/tests/dynamic/Makefile @@ -2,5 +2,8 @@ .PATH: ${.CURDIR:H} +.include <src.opts.mk> +MK_PIE= no + .include "../Makefile.tests" .include <bsd.test.mk> diff --git a/lib/csu/tests/dynamicpie/Makefile b/lib/csu/tests/dynamicpie/Makefile new file mode 100644 index 000000000000..98659a4cc264 --- /dev/null +++ b/lib/csu/tests/dynamicpie/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR:H} + +.include <src.opts.mk> +MK_PIE= yes + +.include "../Makefile.tests" +.include <bsd.test.mk> |
