mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
13 lines
250 B
Makefile
13 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"
|