Index: head/lib/csu/tests/Makefile =================================================================== --- head/lib/csu/tests/Makefile +++ head/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 Index: head/lib/csu/tests/dynamic/Makefile =================================================================== --- head/lib/csu/tests/dynamic/Makefile +++ head/lib/csu/tests/dynamic/Makefile @@ -2,5 +2,8 @@ .PATH: ${.CURDIR:H} +.include +MK_PIE= no + .include "../Makefile.tests" .include Index: head/lib/csu/tests/dynamicpie/Makefile =================================================================== --- head/lib/csu/tests/dynamicpie/Makefile +++ head/lib/csu/tests/dynamicpie/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR:H} + +.include +MK_PIE= yes + +.include "../Makefile.tests" +.include