mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 23:32:52 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
40 lines
682 B
Makefile
40 lines
682 B
Makefile
.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+= nss
|
|
TESTS_SUBDIRS+= regex
|
|
TESTS_SUBDIRS+= resolv
|
|
TESTS_SUBDIRS+= rpc
|
|
TESTS_SUBDIRS+= secure
|
|
TESTS_SUBDIRS+= setjmp
|
|
TESTS_SUBDIRS+= stdio
|
|
TESTS_SUBDIRS+= stdlib
|
|
TESTS_SUBDIRS+= string
|
|
TESTS_SUBDIRS+= sys
|
|
TESTS_SUBDIRS+= termios
|
|
TESTS_SUBDIRS+= time
|
|
TESTS_SUBDIRS+= tls
|
|
TESTS_SUBDIRS+= ttyio
|
|
|
|
SUBDIR_DEPEND_tls= tls_dso
|
|
|
|
.if ${MK_ICONV} != "no"
|
|
TESTS_SUBDIRS+= iconv
|
|
.endif
|
|
|
|
.if ${MK_LOCALES} != "no"
|
|
TESTS_SUBDIRS+= locale
|
|
.endif
|
|
|
|
.if ${MK_SSP} != "no"
|
|
TESTS_SUBDIRS+= ssp
|
|
.endif
|
|
|
|
.include <bsd.test.mk>
|