mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
get rid of testing explicitly for clang (using ${CC:T:Mclang}) in
individual Makefiles.
Instead, use the following extra macros, for use with clang:
- NO_WERROR.clang (disables -Werror)
- NO_WCAST_ALIGN.clang (disables -Wcast-align)
- NO_WFORMAT.clang (disables -Wformat and friends)
- CLANG_NO_IAS (disables integrated assembler)
- CLANG_OPT_SMALL (adds flags for extra small size optimizations)
As a side effect, this enables setting CC/CXX/CPP in src.conf instead of
make.conf! For clang, use the following:
CC=clang
CXX=clang++
CPP=clang-cpp
MFC after: 2 weeks
15 lines
280 B
Makefile
15 lines
280 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../i386/bios
|
|
|
|
KMOD= smapi
|
|
SRCS= smapi.c smapi_bios.S \
|
|
bus_if.h device_if.h
|
|
WERROR=
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
# XXX: clang integrated-as doesn't grok 16-bit assembly yet
|
|
CFLAGS.smapi_bios.S= ${CLANG_NO_IAS}
|
|
CFLAGS+= ${CFLAGS.${.IMPSRC:T}}
|