diff options
author | ru <ru@FreeBSD.org> | 2004-01-20 10:27:23 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-01-20 10:27:23 +0000 |
commit | ad42658a8b3c558767f68cc6ebab9329fd1b92a5 (patch) | |
tree | 7e2887fed7fcef7721b7f5ea49bc65f062108e5b /share/man/man8/Makefile | |
parent | d3a67d480e5324709fb8294beac1b32b009d157b (diff) | |
download | FreeBSD-src-ad42658a8b3c558767f68cc6ebab9329fd1b92a5.zip FreeBSD-src-ad42658a8b3c558767f68cc6ebab9329fd1b92a5.tar.gz |
Use a single style for share/man/ makefiles:
- Sort MAN and MLINKS in "dictionary" order ignoring case.
- For multi-value MAN and multi-pair MLINKS, put each value/pair
on its own line, for easier sorting and so that further diffs
are easier to see.
Diffstat (limited to 'share/man/man8/Makefile')
-rw-r--r-- | share/man/man8/Makefile | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/share/man/man8/Makefile b/share/man/man8/Makefile index 2185d2d..4c9678c 100644 --- a/share/man/man8/Makefile +++ b/share/man/man8/Makefile @@ -1,11 +1,11 @@ # @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ -MAN= MAKEDEV.8 \ - adding_user.8 \ +MAN= adding_user.8 \ crash.8 \ diskless.8 \ intro.8 \ + MAKEDEV.8 \ picobsd.8 \ rc.8 \ rc.sendmail.8 \ @@ -14,9 +14,17 @@ MAN= MAKEDEV.8 \ sticky.8 \ yp.8 -MLINKS= rc.8 rc.early.8 rc.8 rc.serial.8 rc.8 rc.pccard.8 rc.8 rc.network.8 -MLINKS+=rc.8 rc.firewall.8 rc.8 rc.atm.8 rc.8 rc.local.8 rc.8 rc.shutdown.8 -MLINKS+=rc.8 rc.d.8 -MLINKS+=yp.8 YP.8 yp.8 NIS.8 yp.8 nis.8 +MLINKS= rc.8 rc.atm.8 \ + rc.8 rc.d.8 \ + rc.8 rc.early.8 \ + rc.8 rc.firewall.8 \ + rc.8 rc.local.8 \ + rc.8 rc.network.8 \ + rc.8 rc.pccard.8 \ + rc.8 rc.serial.8 \ + rc.8 rc.shutdown.8 +MLINKS+=yp.8 NIS.8 \ + yp.8 nis.8 \ + yp.8 YP.8 .include <bsd.prog.mk> |