freebsd-dev/sys/boot/efi/Makefile.inc

17 lines
379 B
PHP
Raw Normal View History

# $FreeBSD$
2001-06-16 05:59:45 +00:00
2004-02-12 08:10:34 +00:00
BINDIR?= /boot
.if ${MACHINE_CPUARCH} == "i386"
CFLAGS+= -march=i386
.endif
# Options used when building app-specific efi components
# See conf/kern.mk for the correct set of these
CFLAGS+= -ffreestanding -fshort-wchar -Wformat
CFLAGS+= -mno-red-zone
CFLAGS+= -mno-mmx -mno-sse -mno-aes -mno-avx -msoft-float
2004-02-12 08:10:34 +00:00
LDFLAGS+= -nostdlib
.include "../Makefile.inc"