summaryrefslogtreecommitdiff
path: root/lib/csu/tests/errno/Makefile
blob: eae54a936294cb2b934cde2c472ba4f5ef330b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
PLAIN_TESTS_C=	errno_test		\
		errno_static_test	\
		errno_thr_test		\
		errno_thr_static_test

SRCS.errno_static_test= errno_test.c
LDFLAGS.errno_static_test= -static

SRCS.errno_thr_test= errno_test.c
LIBADD.errno_thr_test= pthread

SRCS.errno_thr_static_test= errno_test.c
LDFLAGS.errno_thr_static_test= -static
LIBADD.errno_thr_static_test= pthread

MK_PIE:= no

.include <bsd.test.mk>