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