diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1999-09-05 05:36:12 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1999-09-05 05:36:12 +0000 |
| commit | 7cc7a6b63e972badbc072e70b567c0b03fae2ae9 (patch) | |
| tree | dfd2697a6819fc7a6660f86bcb3064609e1de5e2 | |
| parent | 56072d6b2bc4a8ab0e8ef585909af6abbfa6f5bb (diff) | |
Notes
| -rw-r--r-- | lib/libpanel/Makefile | 19 | ||||
| -rw-r--r-- | lib/ncurses/panel/Makefile | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/lib/libpanel/Makefile b/lib/libpanel/Makefile new file mode 100644 index 000000000000..f8788172aad6 --- /dev/null +++ b/lib/libpanel/Makefile @@ -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> diff --git a/lib/ncurses/panel/Makefile b/lib/ncurses/panel/Makefile new file mode 100644 index 000000000000..f8788172aad6 --- /dev/null +++ b/lib/ncurses/panel/Makefile @@ -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> |
