Change -I$(.CURDIR) to -I. in CFLAGS. As Bruce pointed out

$(...) is bad style and without -I. this program would not
compile unless ${.OBJDIR} == ${.CURDIR}.

Submitted by: bde
This commit is contained in:
Steve Price 1996-11-04 16:14:16 +00:00
parent 206e5b7e27
commit e2a59009ba

View File

@ -4,7 +4,7 @@ BCSRCS= execute.c global.c load.c main.c number.c storage.c util.c
GENSRCS= bc.c scan.c
SRCS= ${GENSRCS} ${BCSRCS}
CFLAGS+= -D_POSIX_SOURCE -I$(.CURDIR)
CFLAGS+= -D_POSIX_SOURCE -I.
CLEANFILES+= ${GENSRCS} y.tab.h
.include <bsd.prog.mk>