1# $NetBSD: Makefile.rumpkerncomp,v 1.14 2021/09/30 02:00:20 yamaguchi Exp $ 2# 3 4.include <bsd.own.mk> 5 6RUMPKERNCOMPS= crypto nv sysproxy tty z simplehook_tester 7RUMPSYSEMUS= sys_cygwin sys_linux sys_sunos 8 9.if make(rumpdescribe) 10RUMPKERNCOMPS+= ${RUMPSYSEMUS} 11.endif 12 13.if ${MKSLJIT} != "no" || make(rumpdescribe) 14RUMPKERNCOMPS+= sljit 15.endif 16 17.if ${MKZFS} != "no" || make(rumpdescribe) 18RUMPKERNCOMPS+= solaris 19.endif 20 21.for var in ${RUMPKERNCOMPS} 22RUMPKERNLIBS+=lib${var} 23RUMPKERNLDADD+=-lrumpkern_${var} 24.endfor 25