a35f04fba2
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)
10 lines
241 B
Makefile
10 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
|