cafb2a0daa
files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.".
10 lines
155 B
Makefile
10 lines
155 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/7/93
|
|
# $FreeBSD$
|
|
|
|
PROG= mklocale
|
|
SRCS= yacc.y lex.l y.tab.h
|
|
CFLAGS+= -I${.CURDIR}
|
|
MAN1= mklocale.1
|
|
|
|
.include <bsd.prog.mk>
|