freebsd-skq/sbin/sysinstall/Makefile
paul dceb550f04 Fix all the bugs introduced by the source shuffle.
All the mbr code now seems to be working. We can build a basic
unix disklabel in any existing DOS partition while retaining the
existing mbr bootcode or we can install to the whole disk which
puts FreeBSD's boot code into the MBR and creates a clean MBR
partition table with FreeBSD in partition 0 taking up the whole disk.
1994-10-21 18:08:33 +00:00

16 lines
312 B
Makefile

PROG = sysinstall
MANEXT = 1
NOMAN= yet
.PATH: /usr/src/sbin/disklabel
SRCS = stage1.c dkcksum.c bootarea.c mbr.c \
utils.c termcap.c exec.c \
stage0.c stage2.c stage3.c main.c
CFLAGS += -Wall -g
LDADD = -ldialog -lncurses -lmytinfo
DPADD = ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO}
.include <bsd.prog.mk>