diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-25 18:49:58 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-25 18:49:58 +0000 |
commit | f2092adb8710adb5913b912f11d96ed7b61a2db4 (patch) | |
tree | e2569e994fe3d47d0c7b9d4e82bbbd253170fef0 /release | |
parent | 74cb22cc5c965773317f3d7b9294973e9c9188c7 (diff) | |
download | FreeBSD-src-f2092adb8710adb5913b912f11d96ed7b61a2db4.zip FreeBSD-src-f2092adb8710adb5913b912f11d96ed7b61a2db4.tar.gz |
Add CRC checking to sysinstall.
Submitted by: gpalmer
Diffstat (limited to 'release')
-rw-r--r-- | release/sysinstall/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/release/sysinstall/Makefile b/release/sysinstall/Makefile index 86b422d..b70e891 100644 --- a/release/sysinstall/Makefile +++ b/release/sysinstall/Makefile @@ -2,7 +2,7 @@ PROG= sysinstall NOMAN= yes CLEANFILES= makedevs.c rtermcap -.PATH: ${.CURDIR}/../disklabel +.PATH: ${.CURDIR}/../disklabel ${.CURDIR}/../../usr.bin/cksum SRCS= globals.c main.c dmenu.c \ menus.c misc.c msg.c \ @@ -11,7 +11,8 @@ SRCS= globals.c main.c dmenu.c \ dist.c lang.c wizard.c \ disks.c command.c decode.c \ label.c tcpip.c media_strategy.c \ - makedevs.c ftp.c config.c + makedevs.c ftp.c config.c \ + crc.c CFLAGS+= -Wall -g -I${.CURDIR}/../libdisk \ -I${.CURDIR}/../../gnu/lib/libdialog |