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