diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2000-10-12 18:41:06 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2000-10-12 18:41:06 +0000 |
| commit | 91f6c53faa97688b47911e7b57ebc7f7a83c8a1b (patch) | |
| tree | 20d6d7c83c030a8728ff210f66e6ef4860fbc10f /lib/libpanel | |
| parent | b14ebf52fbb5ab36a7aeeb7bcb19d6b2abab0800 (diff) | |
Notes
Diffstat (limited to 'lib/libpanel')
| -rw-r--r-- | lib/libpanel/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/lib/libpanel/Makefile b/lib/libpanel/Makefile index 30d77fb23185..669d64975cf8 100644 --- a/lib/libpanel/Makefile +++ b/lib/libpanel/Makefile @@ -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> |
