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