1# Makefile for libpanel 2# $FreeBSD$ 3 4NCURSES=${.CURDIR}/../../contrib/ncurses 5 6.PATH: ${NCURSES}/panel ${NCURSES}/include 7.PATH: ${NCURSES}/man 8 9LIB= panel 10DPADD= ${LIBNCURSES} 11LDADD= -lncurses 12AWK?= awk 13 14SRCS= ncurses_def.h \ 15 p_above.c p_below.c p_bottom.c p_delete.c p_hidden.c \ 16 p_hide.c p_move.c p_new.c p_replace.c p_show.c p_top.c \ 17 p_update.c p_user.c p_win.c panel.c 18INCS= ${NCURSES}/panel/panel.h 19 20CLEANFILES+= ncurses_def.h 21CFLAGS+= -I. 22.if exists(${.OBJDIR}/../libncurses) 23CFLAGS+= -I${.OBJDIR}/../libncurses 24.endif 25CFLAGS+= -I${.CURDIR}/../libncurses 26CFLAGS+= -I${NCURSES}/panel -I${NCURSES}/include -I${NCURSES}/ncurses \ 27 -Wall -DNDEBUG -DHAVE_CONFIG_H 28 29ncurses_def.h: MKncurses_def.sh ncurses_defs 30 AWK=${AWK} sh ${NCURSES}/include/MKncurses_def.sh \ 31 ${NCURSES}/include/ncurses_defs > ncurses_def.h 32 33# generate MAN 34CLEANFILES+= panel.3 35MAN= panel.3 36panel.3: panel.3x 37 cat ${.ALLSRC} > ${.TARGET} 38 39MLINKS+=panel.3 bottom_panel.3 panel.3 del_panel.3 panel.3 hide_panel.3 \ 40 panel.3 move_panel.3 panel.3 new_panel.3 panel.3 panel_above.3 \ 41 panel.3 panel_below.3 panel.3 panel_hidden.3 \ 42 panel.3 panel_userptr.3 panel.3 panel_window.3 \ 43 panel.3 replace_panel.3 panel.3 set_panel_userptr.3 \ 44 panel.3 show_panel.3 panel.3 top_panel.3 panel.3 update_panels.3 45 46.include <bsd.lib.mk> 47 48.SUFFIXES: .3x .3 49