1# Makefile for libpanel 2# $FreeBSD$ 3 4NCURSES=${.CURDIR}/../../contrib/ncurses 5 6.PATH: ${NCURSES}/panel 7 8LIB= panel 9 10SRCS= panel.c 11INCS= ${NCURSES}/panel/panel.h 12 13CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \ 14 -Wall -DNDEBUG -DHAVE_CONFIG_H 15 16.include <bsd.lib.mk> 17