02c4bf4391
Many components under stand/ had CLANG_NO_IAS added when Clang's Integrated Assembler (IAS) did not handle .codeNN directives. Clang gained support quite some time ago, and we can now build stand/ with IAS. Note that in some cases there are small differences in the generated output, so CLANG_NO_IAS should be removed only after testing (or after finding no differences in the output). PR: 205250, 233094 Sponsored by: The FreeBSD Foundation
20 lines
288 B
Makefile
20 lines
288 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
PROG= btxldr
|
|
INTERNALPROG=
|
|
SRCS= btxldr.S
|
|
|
|
CFLAGS+=-DLOADER_ADDRESS=${LOADER_ADDRESS}
|
|
CFLAGS+=-I${BOOTSRC}/i386/common
|
|
|
|
.if defined(BTXLDR_VERBOSE)
|
|
CFLAGS+=-DBTXLDR_VERBOSE
|
|
.endif
|
|
|
|
ORG=${LOADER_ADDRESS}
|
|
LDFLAGS+=${LDFLAGS_BIN}
|
|
|
|
.include <bsd.prog.mk>
|