mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
This contains many improvements, primarily better C++ support, an integrated assembler for x86 and support for -pg.
15 lines
308 B
Makefile
15 lines
308 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../i386/bios
|
|
|
|
KMOD= smapi
|
|
SRCS= smapi.c smapi_bios.S \
|
|
bus_if.h device_if.h
|
|
WERROR=
|
|
.if ${CC:T:Mclang} == "clang"
|
|
# XXX: clang integrated-as doesn't grok 16-bit assembly yet
|
|
CFLAGS+= ${.IMPSRC:T:Msmapi_bios.S:C/^.+$/-no-integrated-as/}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|