xref: /freebsd/lib/csu/tests/errno/Makefile (revision b5c04c8f96f6b51edb767e37aba0ea13b172723a)
1*b5c04c8fSMark JohnstonPLAIN_TESTS_C=	errno_test		\
2*b5c04c8fSMark Johnston		errno_static_test	\
3*b5c04c8fSMark Johnston		errno_thr_test		\
4*b5c04c8fSMark Johnston		errno_thr_static_test
5*b5c04c8fSMark Johnston
6*b5c04c8fSMark JohnstonSRCS.errno_static_test= errno_test.c
7*b5c04c8fSMark JohnstonLDFLAGS.errno_static_test= -static
8*b5c04c8fSMark Johnston
9*b5c04c8fSMark JohnstonSRCS.errno_thr_test= errno_test.c
10*b5c04c8fSMark JohnstonLIBADD.errno_thr_test= pthread
11*b5c04c8fSMark Johnston
12*b5c04c8fSMark JohnstonSRCS.errno_thr_static_test= errno_test.c
13*b5c04c8fSMark JohnstonLDFLAGS.errno_thr_static_test= -static
14*b5c04c8fSMark JohnstonLIBADD.errno_thr_static_test= pthread
15*b5c04c8fSMark Johnston
16*b5c04c8fSMark JohnstonMK_PIE:= no
17*b5c04c8fSMark Johnston
18*b5c04c8fSMark Johnston.include <bsd.test.mk>
19