1 1.7 martin # $NetBSD: Makefile.rumpkerncomp,v 1.7 2013/11/16 10:34:47 martin Exp $ 2 1.1 pooka # 3 1.1 pooka 4 1.4 joerg .include <bsd.own.mk> 5 1.4 joerg 6 1.7 martin RUMPKERNCOMPS= crypto tty z 7 1.7 martin 8 1.7 martin .if ${MACHINE_ARCH} == "i386" || \ 9 1.7 martin ${MACHINE_ARCH} == "x86_64" || \ 10 1.7 martin ${MACHINE_ARCH} == "sparc" 11 1.7 martin RUMPKERNCOMPS+= sljit 12 1.7 martin .endif 13 1.1 pooka 14 1.4 joerg .if ${MKZFS} != "no" 15 1.3 haad RUMPKERNCOMPS+= solaris 16 1.3 haad .endif 17 1.3 haad 18 1.1 pooka .for var in ${RUMPKERNCOMPS} 19 1.1 pooka RUMPKERNLIBS+=lib${var} 20 1.1 pooka RUMPKERNLDADD+=-lrumpkern_${var} 21 1.1 pooka .endfor 22