Deleted Added
full compact
Makefile (58713) Makefile (59087)
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 58713 2000-03-28 01:19:53Z jhb $
1# $FreeBSD: head/sys/boot/i386/loader/Makefile 59087 2000-04-08 01:22:14Z ps $
2
3BASE= loader
4PROG= ${BASE}
5MAN5= ../../forth/loader.conf.5
6MAN8= loader.8 ../../forth/loader.4th.8
7#NOMAN=
8STRIP=
9NEWVERSWHAT= "bootstrap loader" i386
10BINDIR?= /boot
11
12# architecture-specific loader code
13SRCS= main.c conf.c pxe.c
14.PATH: ${.CURDIR}/../libi386
15
2
3BASE= loader
4PROG= ${BASE}
5MAN5= ../../forth/loader.conf.5
6MAN8= loader.8 ../../forth/loader.4th.8
7#NOMAN=
8STRIP=
9NEWVERSWHAT= "bootstrap loader" i386
10BINDIR?= /boot
11
12# architecture-specific loader code
13SRCS= main.c conf.c pxe.c
14.PATH: ${.CURDIR}/../libi386
15
16# Enable PXE TFTP or NFS support, not both.
17CFLAGS+= -DLOADER_NFS_SUPPORT
18#CFLAGS+= -DLOADER_TFTP_SUPPORT
19
16# Enable PnP and ISA-PnP code.
17HAVE_PNP= yes
18HAVE_ISABUS= yes
19
20.if !defined(NOFORTH)
21# Enable BootForth
22BOOT_FORTH= yes
23CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386

--- 16 unchanged lines hidden (view full) ---

40LDFLAGS= -nostdlib -static -Ttext 0x0
41
42# i386 standalone support library
43LIBI386= ${.OBJDIR}/../libi386/libi386.a
44CFLAGS+= -I${.CURDIR}/..
45
46# where to get libstand from
47LIBSTAND= -lstand
20# Enable PnP and ISA-PnP code.
21HAVE_PNP= yes
22HAVE_ISABUS= yes
23
24.if !defined(NOFORTH)
25# Enable BootForth
26BOOT_FORTH= yes
27CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/i386

--- 16 unchanged lines hidden (view full) ---

44LDFLAGS= -nostdlib -static -Ttext 0x0
45
46# i386 standalone support library
47LIBI386= ${.OBJDIR}/../libi386/libi386.a
48CFLAGS+= -I${.CURDIR}/..
49
50# where to get libstand from
51LIBSTAND= -lstand
48#LIBSTAND= ${.CURDIR}/../../../lib/libstand/libstand.a
49#CFLAGS+= -I${.CURDIR}/../../../lib/libstand/
52#LIBSTAND= ${.CURDIR}/../../../../lib/libstand/libstand.a
53CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
50
51# BTX components
52.if exists(${.OBJDIR}/../btx)
53BTXDIR= ${.OBJDIR}/../btx
54.else
55BTXDIR= ${.CURDIR}/../btx
56.endif
57BTXLDR= ${BTXDIR}/btxldr/btxldr

--- 72 unchanged lines hidden ---
54
55# BTX components
56.if exists(${.OBJDIR}/../btx)
57BTXDIR= ${.OBJDIR}/../btx
58.else
59BTXDIR= ${.CURDIR}/../btx
60.endif
61BTXLDR= ${BTXDIR}/btxldr/btxldr

--- 72 unchanged lines hidden ---