1# $NetBSD: Makefile.rumpkerncomp,v 1.10 2014/04/02 19:37:17 pooka Exp $ 2# 3 4.include <bsd.own.mk> 5 6RUMPKERNCOMPS= crypto tty z 7 8.if ${MKSLJIT} != "no" 9RUMPKERNCOMPS+= sljit 10.endif 11 12.if ${MKZFS} != "no" 13RUMPKERNCOMPS+= solaris 14.endif 15 16.for var in ${RUMPKERNCOMPS} 17RUMPKERNLIBS+=lib${var} 18RUMPKERNLDADD+=-lrumpkern_${var} 19.endfor 20