diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-12-18 15:55:10 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-12-18 15:56:50 -0800 |
commit | 8fd5e917a23b6ba2d1bf9128be3524ca8cf8ab34 (patch) | |
tree | d5046a4ccb5a2637b65a4b3e1ebaaf68bd31999d /Makefile | |
parent | 47b318940041cb713958d469a88b1859e14808b0 (diff) | |
download | syslinux-8fd5e917a23b6ba2d1bf9128be3524ca8cf8ab34.tar.gz |
Move doc files to doc/, and add man pages from Debiansyslinux-3.55-pre2
Move all the text documentation to the doc/ directory, add man pages
from the Debian syslinux package, and rename sys2ansi.pl to
syslinux2ansi.pl.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -41,6 +41,7 @@ BINDIR = /usr/bin SBINDIR = /sbin LIBDIR = /usr/lib AUXDIR = $(LIBDIR)/syslinux +MANDIR = /usr/man INCDIR = /usr/include PERL = perl @@ -206,6 +207,10 @@ install: installer mkdir -m 755 -p $(INSTALLROOT)$(AUXDIR) install -m 644 -c $(INSTALL_AUX) $(INSTALLROOT)$(AUXDIR) -install -m 644 -c $(INSTALL_AUX_OPT) $(INSTALLROOT)$(AUXDIR) + mkdir -m 755 -p $(INSTALLROOT)$(MANDIR)/man1 + install -m 644 -c man/*.1 $(INSTALLROOT)$(MANDIR)/man1 + : mkdir -m 755 -p $(INSTALLROOT)$(MANDIR)/man8 + : install -m 644 -c man/*.8 $(INSTALLROOT)$(MANDIR)/man8 $(MAKE) -C com32 install install-lib: installer |