6ec0ee844c
then runs these from the base test programs. With this we can check crtbeginS.o and crtendS.o are working as expected. MFC with: r339738 Sponsored by: DARPA, AFRL
18 lines
313 B
Makefile
18 lines
313 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}
|
|
CFLAGS+= -DDSO_BASE
|
|
DPADD+= ${.OBJDIR:H}/dso/libh_csu.so
|
|
LDFLAGS+= -Wl,-rpath,${TESTSDIR} -L${.OBJDIR:H}/dso
|
|
LDADD+= -lh_csu
|
|
|
|
.include "../Makefile.tests"
|
|
|
|
.for test in ${ATF_TESTS_C}
|
|
ATF_TESTS_CXX+= ${test}
|
|
SRCS.${test}= ${test}.c
|
|
.endfor
|
|
ATF_TESTS_C:=
|
|
|
|
.include <bsd.test.mk>
|