84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
35 lines
705 B
Makefile
35 lines
705 B
Makefile
# $NetBSD: Makefile,v 1.23 2013/02/16 21:40:07 jmmv Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
# LSC: Only relevant libraries
|
|
TESTS_SUBDIRS= csu libc libcrypt libcurses libexecinfo \
|
|
libm libprop \
|
|
libutil
|
|
|
|
.if (${MKRUMP} != "no")
|
|
TESTS_SUBDIRS+= librumpclient librumphijack
|
|
.endif
|
|
|
|
.if ${MKCRYPTO} != "no"
|
|
TESTS_SUBDIRS+= libdes
|
|
.endif
|
|
|
|
.if ${MKKYUA} != "no"
|
|
# These tests come from external/bsd/lutok/tests/lib/liblutok. Ensure they
|
|
# get registered in the Atffile only when installed.
|
|
ATFFILE_EXTRA_TPS= liblutok
|
|
.endif
|
|
|
|
.if (${MKSKEY} != "no")
|
|
TESTS_SUBDIRS+= libskey
|
|
.endif
|
|
|
|
.if ${MKSLJIT} != "no"
|
|
TESTS_SUBDIRS+= libsljit
|
|
TESTS_SUBDIRS+= libbpfjit
|
|
.endif
|
|
|
|
TESTSDIR= ${TESTSBASE}/lib
|
|
|
|
.include <bsd.test.mk>
|