mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
18 lines
308 B
Makefile
18 lines
308 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= cdboot
|
|
STRIP=
|
|
BINMODE=${NOBINMODE}
|
|
MAN=
|
|
SRCS= ${PROG}.S
|
|
|
|
CFLAGS+=-I${.CURDIR}/../../i386/common
|
|
|
|
ORG= 0x0000
|
|
|
|
LDFLAGS=-e start -Ttext ${ORG} -Wl,-N,-S,--oformat,binary
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
# XXX: clang integrated-as doesn't grok .codeNN directives yet
|
|
CFLAGS.cdboot.S= ${CLANG_NO_IAS}
|