Deleted Added
full compact
Makefile (156813) Makefile (163893)
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 156813 2006-03-17 18:54:44Z ru $
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 163893 2006-11-02 00:26:45Z marcel $
2
3.include <bsd.own.mk>
4
5PROG= loader.sym
6INTERNALPROG=
7NEWVERSWHAT= "bootstrap loader" i386
8
9# architecture-specific loader code
10SRCS= main.c conf.c vers.c
11
12# Enable PXE TFTP or NFS support, not both.
13.if defined(LOADER_TFTP_SUPPORT)
14CFLAGS+= -DLOADER_TFTP_SUPPORT
15.else
16CFLAGS+= -DLOADER_NFS_SUPPORT
17.endif
18
2
3.include <bsd.own.mk>
4
5PROG= loader.sym
6INTERNALPROG=
7NEWVERSWHAT= "bootstrap loader" i386
8
9# architecture-specific loader code
10SRCS= main.c conf.c vers.c
11
12# Enable PXE TFTP or NFS support, not both.
13.if defined(LOADER_TFTP_SUPPORT)
14CFLAGS+= -DLOADER_TFTP_SUPPORT
15.else
16CFLAGS+= -DLOADER_NFS_SUPPORT
17.endif
18
19# Include bcache code.
20HAVE_BCACHE= yes
21
19# Enable PnP and ISA-PnP code.
20HAVE_PNP= yes
21HAVE_ISABUS= yes
22
23.if ${MK_FORTH} != "no"
24# Enable BootForth
25BOOT_FORTH= yes
26CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386

--- 74 unchanged lines hidden ---
22# Enable PnP and ISA-PnP code.
23HAVE_PNP= yes
24HAVE_ISABUS= yes
25
26.if ${MK_FORTH} != "no"
27# Enable BootForth
28BOOT_FORTH= yes
29CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386

--- 74 unchanged lines hidden ---