Deleted Added
full compact
1# $FreeBSD: head/sys/boot/pc98/loader/Makefile 65607 2000-09-08 11:18:40Z kato $
1# $FreeBSD: head/sys/boot/pc98/loader/Makefile 68358 2000-11-05 12:35:41Z nyan $
2
3BASE= loader
4PROG= ${BASE}
5#NOMAN=
6STRIP=
7NEWVERSWHAT= "bootstrap loader" pc98
8BINDIR?= /boot
9
10CFLAGS+= -DPC98
11
12# architecture-specific loader code
13SRCS= main.c conf.c
14.PATH: ${.CURDIR}/../../i386/loader
15
16# Enable PXE TFTP or NFS support, not both.
17.if defined(LOADER_TFTP_SUPPORT)
18CFLAGS+= -DLOADER_TFTP_SUPPORT
19.else
20CFLAGS+= -DLOADER_NFS_SUPPORT
18#CFLAGS+= -DLOADER_TFTP_SUPPORT
21.endif
22
23# Enable PnP and ISA-PnP code.
24HAVE_PNP= yes
25HAVE_ISABUS= yes
26
27.if !defined(NOFORTH)
28# Enable BootForth
29BOOT_FORTH= yes

--- 113 unchanged lines hidden ---