xref: /minix3/tests/lib/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1# $NetBSD: Makefile,v 1.24 2015/06/22 00:05:23 matt Exp $
2
3.include <bsd.own.mk>
4
5#__MINIX:
6#	libbluetooth
7#	libobjc libposix libppath libpthread
8#	librt libtre semaphore
9TESTS_SUBDIRS=	csu libc libcrypt libcurses libevent libexecinfo \
10		libm libprop  \
11		libutil
12
13.if (${MKRUMP} != "no") && !defined(BSD_MK_COMPAT_FILE)
14TESTS_SUBDIRS+= librumpclient librumphijack
15.endif
16
17.if ${MKCRYPTO} != "no"
18TESTS_SUBDIRS+= libdes
19.endif
20
21.if ${MKKYUA} != "no"
22# These tests come from external/bsd/lutok/tests/lib/liblutok.  Ensure they
23# get registered in the Atffile only when installed.
24ATFFILE_EXTRA_TPS=	liblutok
25.endif
26
27.if (${MKSKEY} != "no")
28TESTS_SUBDIRS+= libskey
29.endif
30
31.if ${MKSLJIT} != "no"
32TESTS_SUBDIRS+=	libsljit
33TESTS_SUBDIRS+=	libbpfjit
34.endif
35
36TESTSDIR=	${TESTSBASE}/lib
37
38.include <bsd.test.mk>
39