diff options
author | tg <tg@FreeBSD.org> | 2000-12-05 12:38:23 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-12-05 12:38:23 +0000 |
commit | ddde649e30608a94a2a4058b834995cec9cb4799 (patch) | |
tree | b004ff4cd1bbd447a4b628dba201288c8e5e6673 /lib/libpanel | |
parent | 25d6961779194edb26e2a41e7724ea01c6adf229 (diff) | |
download | FreeBSD-src-ddde649e30608a94a2a4058b834995cec9cb4799.zip FreeBSD-src-ddde649e30608a94a2a4058b834995cec9cb4799.tar.gz |
Install manpages, including appropriate MLINKS.
Diffstat (limited to 'lib/libpanel')
-rw-r--r-- | lib/libpanel/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/libpanel/Makefile b/lib/libpanel/Makefile index 669d649..c6c99f1 100644 --- a/lib/libpanel/Makefile +++ b/lib/libpanel/Makefile @@ -4,6 +4,7 @@ NCURSES=${.CURDIR}/../../contrib/ncurses .PATH: ${NCURSES}/panel ${NCURSES}/include +.PATH: ${NCURSES}/man LIB= panel AWK?= awk @@ -22,4 +23,20 @@ ncurses_def.h: MKncurses_def.sh ncurses_defs AWK=${AWK} sh ${NCURSES}/include/MKncurses_def.sh \ ${NCURSES}/include/ncurses_defs > ncurses_def.h +# generate MAN3 +CLEANFILES+= panel.3 +MAN3= panel.3 +all-man: panel.3 +panel.3: panel.3x + ln -s ${.ALLSRC} ${.TARGET} + +MLINKS+=panel.3 bottom_panel.3 panel.3 del_panel.3 panel.3 hide_panel.3 \ + panel.3 move_panel.3 panel.3 new_panel.3 panel.3 panel_above.3 \ + panel.3 panel_below.3 panel.3 panel_hidden.3 \ + panel.3 panel_userptr.3 panel.3 panel_window.3 \ + panel.3 replace_panel.3 panel.3 set_panel_userptr.3 \ + panel.3 show_panel.3 panel.3 top_panel.3 panel.3 update_panels.3 + .include <bsd.lib.mk> + +.SUFFIXES: .3x .3 |