1 # $NetBSD: Makefile,v 1.6 2012/02/02 19:43:08 tls Exp $ 2 # 3 4 .PATH: ${.CURDIR}/../../../../dev 5 6 LIB= rumpdev_rnd 7 8 SRCS= rndpseudo.c 9 10 SRCS+= component.c 11 12 # sys/rump/Makefile.rump sets CPPFLAGS+= -DCOMPAT_50=1, 13 # so we need rndpseudo_50.c from the compat/common directory. 14 .PATH: ${.CURDIR}/../../../../compat/common 15 SRCS+= rndpseudo_50.c 16 17 CPPFLAGS+= -I${RUMPTOP}/librump/rumpvfs 18 19 .include <bsd.lib.mk> 20 .include <bsd.klinks.mk> 21