108 lines
2.5 KiB
Makefile
108 lines
2.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
BASE= loader
|
|
PROG= ${BASE}
|
|
STRIP=
|
|
NEWVERSWHAT= "bootstrap loader" sparc64
|
|
BINDIR?= /boot
|
|
INSTALLFLAGS= -b
|
|
NOFORTH= yes
|
|
|
|
# Architecture-specific loader code
|
|
SRCS= locore.S main.c metadata.c
|
|
|
|
LOADER_DISK_SUPPORT?= yes
|
|
LOADER_UFS_SUPPORT?= yes
|
|
LOADER_CD9660_SUPPORT?= yes
|
|
LOADER_NET_SUPPORT?= no
|
|
LOADER_NFS_SUPPORT?= no
|
|
LOADER_TFTP_SUPPORT?= no
|
|
|
|
.if ${LOADER_DISK_SUPPORT} == "yes"
|
|
CFLAGS+= -DLOADER_DISK_SUPPORT
|
|
.endif
|
|
.if ${LOADER_UFS_SUPPORT} == "yes"
|
|
CFLAGS+= -DLOADER_UFS_SUPPORT
|
|
.endif
|
|
.if ${LOADER_CD9660_SUPPORT} == "yes"
|
|
CFLAGS+= -DLOADER_CD9660_SUPPORT
|
|
.endif
|
|
.if ${LOADER_NET_SUPPORT} == "yes"
|
|
CFLAGS+= -DLOADER_NET_SUPPORT
|
|
.endif
|
|
.if ${LOADER_NFS_SUPPORT} == "yes"
|
|
CFLAGS+= -DLOADER_NFS_SUPPORT
|
|
.endif
|
|
.if ${LOADER_TFTP_SUPPORT} == "yes"
|
|
CFLAGS+= -DLOADER_TFTP_SUPPORT
|
|
.endif
|
|
|
|
.if !defined(NOFORTH)
|
|
# Enable BootForth
|
|
BOOT_FORTH= yes
|
|
CFLAGS+= -DBOOT_FORTH -I${.CURDIR}/../../ficl -I${.CURDIR}/../../ficl/sparc64
|
|
.if exists(${.OBJDIR}/../../ficl/libficl.a)
|
|
LIBFICL= ${.OBJDIR}/../../ficl/libficl.a
|
|
.else
|
|
LIBFICL= ${.CURDIR}/../../ficl/libficl.a
|
|
.endif
|
|
.endif
|
|
|
|
# Always add MI sources
|
|
.PATH: ${.CURDIR}/../../common
|
|
.include <${.CURDIR}/../../common/Makefile.inc>
|
|
CFLAGS+= -I${.CURDIR}/../../common
|
|
CFLAGS+= -I${.CURDIR}/../../.. -I.
|
|
|
|
CLEANFILES+= vers.c vers.o ${BASE}.help
|
|
|
|
CFLAGS+= -ffreestanding
|
|
LDFLAGS= -nostdlib -static
|
|
|
|
# Openfirmware standalone support library
|
|
LIBOFW= ${.OBJDIR}/../../ofw/libofw/libofw.a
|
|
CFLAGS+= -I${.CURDIR}/../../ofw/libofw/
|
|
|
|
# where to get libstand from
|
|
#XXX need a better way to do this
|
|
LIBSTAND= ${.CURDIR}/../../../../lib/libstand/libstand.a
|
|
.if !exists(${LIBSTAND})
|
|
LIBSTAND= ${.OBJDIR}/../../../../lib/libstand/libstand.a
|
|
.if !exists(${LIBSTAND})
|
|
LIBSTAND= -lstand
|
|
.endif
|
|
.endif
|
|
CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/
|
|
|
|
LDADD= ${LIBSTAND} ${LIBOFW}
|
|
|
|
vers.o: ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version
|
|
sh ${.CURDIR}/../../common/newvers.sh ${.CURDIR}/version ${NEWVERSWHAT}
|
|
${CC} -c vers.c
|
|
|
|
${BASE}.help: help.common help.sparc64
|
|
cat ${.ALLSRC} | \
|
|
awk -f ${.CURDIR}/../../common/merge_help.awk > ${.TARGET}
|
|
|
|
.PATH: ${.CURDIR}/../../forth
|
|
FILES= ${BASE}.help loader.4th support.4th loader.conf
|
|
FILESDIR_loader.conf= /boot/defaults
|
|
|
|
.if !exists(${DESTDIR}/boot/loader.rc)
|
|
FILES+= loader.rc
|
|
.endif
|
|
|
|
# There are no things relevant to all boot parts of FreeBSD/sparc64 yet.
|
|
#.include <${.CURDIR}/../Makefile.inc>
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.if exists(${.CURDIR}/../../../sparc64/include)
|
|
beforedepend ${OBJS}: machine
|
|
|
|
machine:
|
|
ln -sf ${.CURDIR}/../../../sparc64/include machine
|
|
.endif
|
|
|
|
CLEANFILES+= machine
|