Move the building of the PXE module into libi386.

This commit is contained in:
Paul Saab 2000-04-21 22:06:02 +00:00
parent 16c9a708a4
commit 43e797fd31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=59473
2 changed files with 6 additions and 3 deletions

View File

@ -8,7 +8,7 @@ INTERNALSTATICLIB= true
SRCS= aout_freebsd.c biosdisk.c biosmem.c biospnp.c biospci.c \
bootinfo.c comconsole.c devicename.c elf_freebsd.c gatea20.c \
i386_copy.c i386_module.c time.c vidconsole.c pxetramp.s
i386_copy.c i386_module.c time.c vidconsole.c pxe.c pxetramp.s
CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../btx/lib \
-I${.CURDIR}/../../.. -I.
@ -19,6 +19,9 @@ CFLAGS+= -DCOMPORT=${BOOT_COMCONSOLE_PORT}
BOOT_COMCONSOLE_SPEED?= 9600
CFLAGS+= -DCOMSPEED=${BOOT_COMCONSOLE_SPEED}
# the location of libstand
CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
# Make the disk code more talkative
#CFLAGS+= -DDISK_DEBUG

View File

@ -10,7 +10,7 @@ NEWVERSWHAT= "bootstrap loader" i386
BINDIR?= /boot
# architecture-specific loader code
SRCS= main.c conf.c pxe.c
SRCS= main.c conf.c
.PATH: ${.CURDIR}/../libi386
# Enable PXE TFTP or NFS support, not both.
@ -119,7 +119,7 @@ beforeinstall:
${BASE}.sym: ${OBJS} ${LIBI386} ${LIBSTAND} ${LIBFICL} vers.o
${CC} ${LDFLAGS} -o ${.TARGET} ${BTXCRT} ${OBJS} vers.o \
${LIBFICL} ${LIBSTAND} ${LIBI386} ${LIBSTAND}
${LIBFICL} ${LIBI386} ${LIBSTAND}
# If it's not there, don't consider it a target
.if exists(${.CURDIR}/../../../i386/include)