2ca2c11464
Re-organised files, moved bootcode routines into their own files. Check return types of everything and pass error messages to windows so we get good diagnostics. Made start on stage 2 installation. Implemented a status file that keeeps track of where we are in the installation process and allows installation from media sequences.
14 lines
242 B
Makefile
14 lines
242 B
Makefile
PROG = sysinstall
|
|
MANEXT = 1
|
|
NOMAN= yet
|
|
|
|
.PATH: /usr/src/sbin/disklabel
|
|
|
|
SRCS = sysinstall.c dkcksum.c bootarea.c
|
|
|
|
CFLAGS += -Wall
|
|
LDADD = -ldialog -lncurses -lmytinfo
|
|
DPADD = ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO}
|
|
|
|
.include <bsd.prog.mk>
|