diff options
Diffstat (limited to 'lib/libmenu')
-rw-r--r-- | lib/libmenu/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libmenu/Makefile b/lib/libmenu/Makefile index 2ba1211..0c3088b 100644 --- a/lib/libmenu/Makefile +++ b/lib/libmenu/Makefile @@ -18,7 +18,11 @@ SRCS= ncurses_def.h \ INCS= ${NCURSES}/menu/menu.h ${NCURSES}/menu/eti.h CLEANFILES+= ncurses_def.h -CFLAGS+= -I. -I${.CURDIR}/../libncurses -I${NCURSES}/menu -I${NCURSES}/include \ +CFLAGS+= -I. +.if exists(${.OBJDIR}/../libncurses) +CFLAGS+= -I${.OBJDIR}/../libncurses +.endif +CFLAGS+=-I${.CURDIR}/../libncurses -I${NCURSES}/menu -I${NCURSES}/include \ -Wall -DNDEBUG -DHAVE_CONFIG_H ncurses_def.h: MKncurses_def.sh ncurses_defs |