Deleted Added
full compact
Makefile (65598) Makefile (68310)
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 65598 2000-09-08 04:26:55Z imp $
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 68310 2000-11-04 08:43:13Z ps $
2
3BASE= loader
4PROG= ${BASE}
5#NOMAN=
6STRIP=
7NEWVERSWHAT= "bootstrap loader" i386
8BINDIR?= /boot
9
10# architecture-specific loader code
11SRCS= main.c conf.c
12
13# Enable PXE TFTP or NFS support, not both.
2
3BASE= loader
4PROG= ${BASE}
5#NOMAN=
6STRIP=
7NEWVERSWHAT= "bootstrap loader" i386
8BINDIR?= /boot
9
10# architecture-specific loader code
11SRCS= main.c conf.c
12
13# Enable PXE TFTP or NFS support, not both.
14.if defined(LOADER_TFTP_SUPPORT)
15CFLAGS+= -DLOADER_TFTP_SUPPORT
16.else
14CFLAGS+= -DLOADER_NFS_SUPPORT
17CFLAGS+= -DLOADER_NFS_SUPPORT
15#CFLAGS+= -DLOADER_TFTP_SUPPORT
18.endif
16
17# Enable PnP and ISA-PnP code.
18HAVE_PNP= yes
19HAVE_ISABUS= yes
20
21.if !defined(NOFORTH)
22# Enable BootForth
23BOOT_FORTH= yes

--- 113 unchanged lines hidden ---
19
20# Enable PnP and ISA-PnP code.
21HAVE_PNP= yes
22HAVE_ISABUS= yes
23
24.if !defined(NOFORTH)
25# Enable BootForth
26BOOT_FORTH= yes

--- 113 unchanged lines hidden ---