diff options
author | peter <peter@FreeBSD.org> | 2002-05-21 07:08:30 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-05-21 07:08:30 +0000 |
commit | 1a267f24cad090ad6e013849c039e3b798cec38e (patch) | |
tree | 69d7a366de7df6ee65533a5eb7017deed9bb3b87 /lib/libform | |
parent | fac83c44d2943a214bdb126c2fcc360cf47fadb1 (diff) | |
download | FreeBSD-src-1a267f24cad090ad6e013849c039e3b798cec38e.zip FreeBSD-src-1a267f24cad090ad6e013849c039e3b798cec38e.tar.gz |
Make this a little easier to build standalone. (same change as libpanel)
Diffstat (limited to 'lib/libform')
-rw-r--r-- | lib/libform/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libform/Makefile b/lib/libform/Makefile index 308e97b..7c22588 100644 --- a/lib/libform/Makefile +++ b/lib/libform/Makefile @@ -21,7 +21,11 @@ SRCS= ncurses_def.h \ INCS= ${NCURSES}/form/form.h CLEANFILES+= ncurses_def.h -CFLAGS+= -I. -I${.CURDIR}/../libncurses -I${NCURSES}/form -I${NCURSES}/menu \ +CFLAGS+= -I. +.if exists(${.OBJDIR}/../libncurses) +CFLAGS+= -I${.OBJDIR}/../libncurses +.endif +CFLAGS+=-I${.CURDIR}/../libncurses -I${NCURSES}/form -I${NCURSES}/menu \ -I${NCURSES}/include -Wall -DNDEBUG -DHAVE_CONFIG_H ncurses_def.h: MKncurses_def.sh ncurses_defs |