1483395dbe
* Split bios geometry and MBR partition editing code formerly in arch/i386/{md,fdisk}.c to mbr.c in mi directory. * Leave /sbin/fdisk parsing/handling code in separate file, we may want to change it later. move to mi directory. * Create mbr.h with declarations for MBR/BIOS-geomotry code. #include "mbr.h" in i386 md.h. * Use symbolic names for 386bsd and new NetBSD partition IDs. Handle MBRs with both 386bsd and NetBSD partitions less stupidly.
15 lines
354 B
Makefile
15 lines
354 B
Makefile
# $NetBSD: Makefile,v 1.6 1998/02/24 05:36:03 jonathan Exp $
|
|
#
|
|
# Makefile for i386
|
|
#
|
|
|
|
# have to have all of them here for crunch ...
|
|
|
|
SRCS= menu_defs.c msg_defs.c main.c install.c upgrade.c \
|
|
txtwalk.c run.c factor.c net.c disks.c util.c geom.c \
|
|
label.c target.c md.c fdisk.c mbr.c
|
|
|
|
fdisk.o md.o: menu_defs.h msg_defs.h
|
|
|
|
.include "../../Makefile.inc"
|