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:
parent
5fc5b2e5c7
commit
96c8a8c203
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user