1999-09-05 05:36:12 +00:00
|
|
|
# Makefile for libpanel
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
NCURSES=${.CURDIR}/../../contrib/ncurses
|
|
|
|
|
|
|
|
.PATH: ${NCURSES}/panel
|
|
|
|
|
|
|
|
LIB= panel
|
|
|
|
|
2000-05-24 09:01:23 +00:00
|
|
|
SRCS= 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
|
2000-01-14 07:57:47 +00:00
|
|
|
INCS= ${NCURSES}/panel/panel.h
|
1999-09-05 05:36:12 +00:00
|
|
|
|
|
|
|
CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
|
|
|
|
-Wall -DNDEBUG -DHAVE_CONFIG_H
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|