freebsd-dev/sys/boot/ficl/Makefile

69 lines
1.6 KiB
Makefile
Raw Normal View History

1999-08-28 01:08:13 +00:00
# $FreeBSD$
#
.PATH: ${.CURDIR}/${MACHINE_CPUARCH:S/amd64/i386/}
2002-05-09 17:47:25 +00:00
BASE_SRCS= dict.c ficl.c fileaccess.c float.c loader.c math64.c \
prefix.c search.c stack.c tools.c vm.c words.c
2002-05-09 17:47:25 +00:00
SRCS= ${BASE_SRCS} sysdep.c softcore.c
CLEANFILES= softcore.c testmain testmain.o
CFLAGS+= -ffreestanding
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
CFLAGS+= -march=i386
2002-05-09 17:47:25 +00:00
CFLAGS+= -mpreferred-stack-boundary=2
CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
.endif
.if ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm"
CFLAGS+= -msoft-float
.endif
2003-06-08 03:11:16 +00:00
.if ${MACHINE} == "pc98"
CFLAGS+= -Os -DPC98
2003-06-08 03:11:16 +00:00
.endif
.if HAVE_PNP
2002-05-09 17:47:25 +00:00
CFLAGS+= -DHAVE_PNP
.endif
.ifmake testmain
2002-05-09 17:47:25 +00:00
CFLAGS+= -DTESTMAIN -D_TESTMAIN
SRCS+= testmain.c
PROG= testmain
.include <bsd.prog.mk>
.else
2002-05-09 17:47:25 +00:00
LIB= ficl
INTERNALLIB=
.include <bsd.lib.mk>
.endif
# Standard softwords
2002-05-09 17:47:25 +00:00
.PATH: ${.CURDIR}/softwords
SOFTWORDS= softcore.fr jhlocal.fr marker.fr freebsd.fr ficllocal.fr \
ifbrack.fr
# Optional OO extension softwords
#SOFTWORDS+= oo.fr classes.fr
.if ${MACHINE_CPUARCH} == "amd64"
CFLAGS+= -m32 -I.
.endif
.if ${MACHINE_ARCH} == "powerpc64"
CFLAGS+= -m32 -mcpu=powerpc -I.
.endif
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/${MACHINE_CPUARCH:S/amd64/i386/} \
-I${.CURDIR}/../common
2002-05-09 17:47:25 +00:00
softcore.c: ${SOFTWORDS} softcore.awk
(cd ${.CURDIR}/softwords; cat ${SOFTWORDS} \
| awk -f softcore.awk -v datestamp="`LC_ALL=C date`") > ${.TARGET}
.if ${MACHINE_CPUARCH} == "amd64"
.if !exists(machine)
${SRCS:M*.c:R:S/$/.o/g}: machine
beforedepend ${OBJS}: machine
.endif
machine:
ln -sf ${.CURDIR}/../../i386/include machine
CLEANFILES+= machine
.endif