Makefile revision 1.8
1#	$NetBSD: Makefile,v 1.8 2015/05/16 13:59:00 pooka Exp $
2#
3
4.PATH:	${.CURDIR}/../../../../kern					\
5	${.CURDIR}/../../../../dev ${.CURDIR}/../../../../dev/dkwedge
6
7LIB=	rumpdev_disk
8SRCS=	disk_component.c
9
10#
11# We use subr_disk_mbr on all platforms.  The current structure of
12# code allows us to pick only one readdisklabel() routine.  While
13# this is not the native one for all platforms, it's probably the
14# most common one in an image floating on the internetto.
15SRCS+=	subr_disk_mbr.c
16
17# sys/kern
18SRCS+=	subr_disk.c subr_disk_open.c
19# sys/dev
20SRCS+=	dksubr.c dk.c
21
22.include <bsd.lib.mk>
23.include <bsd.klinks.mk>
24