mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 23:54:38 +01:00
26b2d70e8e
so it can be used by other programs. Added all the necessary menus to take the user through the installation of the bootblocks.
14 lines
248 B
Makefile
14 lines
248 B
Makefile
PROG = sysinstall
|
|
MANEXT = 1
|
|
NOMAN= yet
|
|
|
|
.PATH: /usr/src/sbin/disklabel
|
|
|
|
SRCS = sysinstall.c dkcksum.c bootarea.c mbr.c
|
|
|
|
CFLAGS += -Wall
|
|
LDADD = -ldialog -lncurses -lmytinfo
|
|
DPADD = ${LIBDIALOG} ${LIBNCURSES} ${LIBMYTINFO}
|
|
|
|
.include <bsd.prog.mk>
|