mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add bmake glue for libpanel (the SVSV-style ETI curses panel (overlapping
layers) driver from ncurses)
This commit is contained in:
parent
56072d6b2b
commit
7cc7a6b63e
2 changed files with 38 additions and 0 deletions
19
lib/libpanel/Makefile
Normal file
19
lib/libpanel/Makefile
Normal 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>
|
||||
19
lib/ncurses/panel/Makefile
Normal file
19
lib/ncurses/panel/Makefile
Normal 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>
|
||||
Loading…
Reference in a new issue