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

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

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

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

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

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

--- 72 unchanged lines hidden ---