mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 11:00:15 -05:00
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo
over ${.CURDIR}/../foo for paths in Makefiles.
Differential Revision: https://reviews.freebsd.org/D9932
Sponsored by: Netflix
Silence on: arch@ (twice)
9 lines
241 B
Makefile
9 lines
241 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.compiler.mk>
|
|
|
|
SRCS+= lex.l yacc.y
|
|
CFLAGS+= -I${.CURDIR} -I${SRCTOP}/usr.bin/mkcsmapper \
|
|
-I${SRCTOP}/lib/libc/iconv \
|
|
-I${SRCTOP}/lib/libiconv_modules/mapper_std
|
|
CFLAGS.gcc+= --param max-inline-insns-single=64
|