mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-10 00:13:04 +01:00
d05257b0f2
Reviewed by: marcel, and make world
17 lines
298 B
Makefile
17 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>
|