mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 04:40:53 -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)
10 lines
206 B
Makefile
10 lines
206 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/7/93
|
|
# $FreeBSD$
|
|
|
|
PROG= mklocale
|
|
SRCS= yacc.y lex.l y.tab.h
|
|
CFLAGS+= -I. -I${.CURDIR} -I${SRCTOP}/lib/libc/locale
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
.include <bsd.prog.mk>
|