b0b98e9752
Sponsored by: The FreeBSD Foundation
14 lines
250 B
Makefile
14 lines
250 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR?= /boot
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
CFLAGS+= -march=i386
|
|
.endif
|
|
|
|
# Options used when building app-specific efi components
|
|
CFLAGS+= -ffreestanding -fshort-wchar -Wformat
|
|
LDFLAGS+= -nostdlib
|
|
|
|
.include "../Makefile.inc"
|