1# Makefile for libpanel 2# $FreeBSD$ 3 4NCURSES=${.CURDIR}/../../contrib/ncurses 5 6.PATH: ${NCURSES}/panel 7 8LIB= panel 9 10SRCS= panel.c 11 12CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \ 13 -Wall -DNDEBUG -DHAVE_CONFIG_H 14 15beforeinstall: 16 ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ 17 ${NCURSES}/panel/panel.h ${DESTDIR}/usr/include 18 19.include <bsd.lib.mk> 20