Update for ncurses 20001009 import

This commit is contained in:
Peter Wemm 2000-10-11 08:17:19 +00:00
parent 00eb1c2148
commit b59859cba3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66970
2 changed files with 20 additions and 6 deletions

View File

@ -3,16 +3,23 @@
NCURSES=${.CURDIR}/../../contrib/ncurses
.PATH: ${NCURSES}/panel
.PATH: ${NCURSES}/panel ${NCURSES}/include
LIB= panel
AWK?= awk
SRCS= p_above.c p_below.c p_bottom.c p_delete.c p_hidden.c \
SRCS= ncurses_def.h \
p_above.c p_below.c p_bottom.c p_delete.c p_hidden.c \
p_hide.c p_move.c p_new.c p_replace.c p_show.c p_top.c \
p_update.c p_user.c p_win.c panel.c
INCS= ${NCURSES}/panel/panel.h
CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
CLEANFILES+= ncurses_def.h
CFLAGS+= -I. -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
-Wall -DNDEBUG -DHAVE_CONFIG_H
ncurses_def.h: MKncurses_def.sh ncurses_defs
AWK=${AWK} sh ${NCURSES}/include/MKncurses_def.sh \
${NCURSES}/include/ncurses_defs > ncurses_def.h
.include <bsd.lib.mk>

View File

@ -3,16 +3,23 @@
NCURSES=${.CURDIR}/../../contrib/ncurses
.PATH: ${NCURSES}/panel
.PATH: ${NCURSES}/panel ${NCURSES}/include
LIB= panel
AWK?= awk
SRCS= p_above.c p_below.c p_bottom.c p_delete.c p_hidden.c \
SRCS= ncurses_def.h \
p_above.c p_below.c p_bottom.c p_delete.c p_hidden.c \
p_hide.c p_move.c p_new.c p_replace.c p_show.c p_top.c \
p_update.c p_user.c p_win.c panel.c
INCS= ${NCURSES}/panel/panel.h
CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
CLEANFILES+= ncurses_def.h
CFLAGS+= -I. -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
-Wall -DNDEBUG -DHAVE_CONFIG_H
ncurses_def.h: MKncurses_def.sh ncurses_defs
AWK=${AWK} sh ${NCURSES}/include/MKncurses_def.sh \
${NCURSES}/include/ncurses_defs > ncurses_def.h
.include <bsd.lib.mk>