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