mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-11 15:08:19 -04:00
23 lines
593 B
Makefile
23 lines
593 B
Makefile
# $NetBSD: Makefile,v 1.7 2010/02/16 20:42:44 pooka Exp $
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../../kern \
|
|
${.CURDIR}/../../../../dev ${.CURDIR}/../../../../dev/dkwedge
|
|
|
|
LIB= rumpdev_disk
|
|
|
|
#
|
|
# We use subr_disk_mbr on all platforms. The current structure of
|
|
# code allows us to pick only one readdisklabel() routine. While
|
|
# this is not the native one for all platforms, it's probably the
|
|
# most common one in an image floating on the internetto.
|
|
SRCS= subr_disk_mbr.c
|
|
|
|
# sys/kern
|
|
SRCS+= subr_disk.c subr_disk_open.c
|
|
# sys/dev
|
|
SRCS+= dksubr.c dk.c
|
|
|
|
.include <bsd.lib.mk>
|
|
.include <bsd.klinks.mk>
|