diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 21:33:13 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 21:33:13 +0000 |
commit | 65af288d2747dc891a03f23bb5259b26adf16e7b (patch) | |
tree | aa13829805102484f3283fb34255baa5807cb320 /lib/libpanel/Makefile | |
parent | c7aff53dcab5119387e790e8e613e1bcc7278d02 (diff) |
SYSV-style panels library; from ncurses
Diffstat (limited to 'lib/libpanel/Makefile')
-rw-r--r-- | lib/libpanel/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/libpanel/Makefile b/lib/libpanel/Makefile new file mode 100644 index 00000000000..b7882b9360c --- /dev/null +++ b/lib/libpanel/Makefile @@ -0,0 +1,12 @@ +LIB= panel +SRCS= panel.c +HDRS= panel.h +MAN= panel.3 + +includes: + @cd ${.CURDIR}; for i in ${HDRS}; do \ + cmp -s $$i ${DESTDIR}/usr/include/$$i || \ + install -c -m 444 -o $(BINOWN) -g $(BINGRP) $$i \ + ${DESTDIR}/usr/include; done + +.include <bsd.lib.mk> |