mirror of
https://github.com/opnsense/src.git
synced 2026-04-13 13:28:01 -04:00
netbsd-tests.test.mk (r289151) - Eliminate explicit OBJTOP/SRCTOP setting - Convert all ad hoc NetBSD test integration over to netbsd-tests.test.mk - Remove unnecessary TESTSDIR setting - Use SRCTOP where possible for clarity MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Divison
30 lines
483 B
Makefile
30 lines
483 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= tls_dso
|
|
|
|
TESTS_SUBDIRS= c063
|
|
TESTS_SUBDIRS+= db
|
|
TESTS_SUBDIRS+= gen
|
|
TESTS_SUBDIRS+= hash
|
|
TESTS_SUBDIRS+= inet
|
|
TESTS_SUBDIRS+= net
|
|
TESTS_SUBDIRS+= regex
|
|
TESTS_SUBDIRS+= stdio
|
|
TESTS_SUBDIRS+= stdlib
|
|
TESTS_SUBDIRS+= string
|
|
TESTS_SUBDIRS+= sys
|
|
TESTS_SUBDIRS+= termios
|
|
TESTS_SUBDIRS+= tls
|
|
TESTS_SUBDIRS+= ttyio
|
|
|
|
.if ${MK_LOCALES} != "no"
|
|
TESTS_SUBDIRS+= locale
|
|
.endif
|
|
|
|
.if ${MK_SSP} != "no"
|
|
TESTS_SUBDIRS+= ssp
|
|
.endif
|
|
|
|
.include <bsd.test.mk>
|