Deleted Added
full compact
Makefile (217030) Makefile (217033)
1# $FreeBSD: head/sys/boot/ficl/Makefile 217030 2011-01-05 22:12:06Z dim $
1# $FreeBSD: head/sys/boot/ficl/Makefile 217033 2011-01-05 22:24:33Z dim $
2#
3.PATH: ${.CURDIR}/${MACHINE_CPUARCH:S/amd64/i386/}
4BASE_SRCS= dict.c ficl.c fileaccess.c float.c loader.c math64.c \
5 prefix.c search.c stack.c tools.c vm.c words.c
6
7SRCS= ${BASE_SRCS} sysdep.c softcore.c
8CLEANFILES= softcore.c testmain testmain.o
9CFLAGS+= -ffreestanding
10.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
11CFLAGS+= -mpreferred-stack-boundary=2
2#
3.PATH: ${.CURDIR}/${MACHINE_CPUARCH:S/amd64/i386/}
4BASE_SRCS= dict.c ficl.c fileaccess.c float.c loader.c math64.c \
5 prefix.c search.c stack.c tools.c vm.c words.c
6
7SRCS= ${BASE_SRCS} sysdep.c softcore.c
8CLEANFILES= softcore.c testmain testmain.o
9CFLAGS+= -ffreestanding
10.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
11CFLAGS+= -mpreferred-stack-boundary=2
12CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3
12CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
13.endif
14.if ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm"
15CFLAGS+= -msoft-float
16.endif
17.if ${MACHINE} == "pc98"
18CFLAGS+= -Os -DPC98
19.endif
20.if HAVE_PNP

--- 45 unchanged lines hidden ---
13.endif
14.if ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm"
15CFLAGS+= -msoft-float
16.endif
17.if ${MACHINE} == "pc98"
18CFLAGS+= -Os -DPC98
19.endif
20.if HAVE_PNP

--- 45 unchanged lines hidden ---