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 1996-11-04 16:14:16 +00:00
parent 5fc5b2e5c7
commit 96c8a8c203

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>