mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 07:14:14 -05:00
16 lines
298 B
Makefile
16 lines
298 B
Makefile
# Makefile for libpanel
|
|
# $FreeBSD$
|
|
|
|
NCURSES=${.CURDIR}/../../contrib/ncurses
|
|
|
|
.PATH: ${NCURSES}/panel
|
|
|
|
LIB= panel
|
|
|
|
SRCS= panel.c
|
|
INCS= ${NCURSES}/panel/panel.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../libncurses -I${NCURSES}/panel -I${NCURSES}/include \
|
|
-Wall -DNDEBUG -DHAVE_CONFIG_H
|
|
|
|
.include <bsd.lib.mk>
|