Add bmake glue for libpanel (the SVSV-style ETI curses panel (overlapping

layers) driver from ncurses)
This commit is contained in:
Peter Wemm 1999-09-05 05:36:12 +00:00
parent 56072d6b2b
commit 7cc7a6b63e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=50936
2 changed files with 38 additions and 0 deletions

19
lib/libpanel/Makefile Normal file
View File

@ -0,0 +1,19 @@
# Makefile for libpanel
# $FreeBSD$
NCURSES=${.CURDIR}/../../contrib/ncurses
.PATH: ${NCURSES}/panel
LIB= panel
SRCS= panel.c
CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
-Wall -DNDEBUG -DHAVE_CONFIG_H
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${NCURSES}/panel/panel.h ${DESTDIR}/usr/include
.include <bsd.lib.mk>

View File

@ -0,0 +1,19 @@
# Makefile for libpanel
# $FreeBSD$
NCURSES=${.CURDIR}/../../contrib/ncurses
.PATH: ${NCURSES}/panel
LIB= panel
SRCS= panel.c
CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
-Wall -DNDEBUG -DHAVE_CONFIG_H
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \
${NCURSES}/panel/panel.h ${DESTDIR}/usr/include
.include <bsd.lib.mk>