chiark / gitweb /
Add lots of references to manual pages, and fix a typo.
[mLib] / man / Makefile.m4
CommitLineData
f5984284 1## -*-makefile-*-
2##
c255a2ee 3## $Id: Makefile.m4,v 1.2 1999/07/06 19:36:05 mdw Exp $
f5984284 4##
5## Makefile for mLib's manual pages
6##
7## (c) 1999 Straylight/Edgeware
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of the mLib utilities library.
13##
14## mLib is free software; you can redistribute it and/or modify
15## it under the terms of the GNU Library General Public License as
16## published by the Free Software Foundation; either version 2 of the
17## License, or (at your option) any later version.
18##
19## mLib is distributed in the hope that it will be useful,
20## but WITHOUT ANY WARRANTY; without even the implied warranty of
21## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22## GNU Library General Public License for more details.
23##
24## You should have received a copy of the GNU Library General Public
25## License along with mLib; if not, write to the Free
26## Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27## MA 02111-1307, USA.
28
29##----- Revision history ----------------------------------------------------
30##
31## $Log: Makefile.m4,v $
c255a2ee 32## Revision 1.2 1999/07/06 19:36:05 mdw
33## Various minor bugfixes.
34##
f5984284 35## Revision 1.1 1999/07/06 19:14:22 mdw
36## Makefile for manual page installation. Subtle and complicated.
37##
38
c255a2ee 39AUTOMAKE_OPTIONS = foreign no-installman
f5984284 40
41dnl --- Read in the various lists of things ---
42
43define(`nl', `
44')
45define(`joinlines', `patsubst(patsubst(`$1', nl$, `'), nl, `$2')')
46define(`filenonl', `\nl $2`'joinlines(include(`$1'), ` \\'nl` $2')')
47define(`TOPLEVEL', filenonl(`toplevel'))
48define(`LINKS', filenonl(`links'))
49define(`SRC_TOPLEVEL', filenonl(`toplevel', `$(srcdir)/'))
50define(`SRC_LINKS', filenonl(`links', `$(srcdir)/'))
51
52## --- Manual pages ---
53
54man_MANS = TOPLEVEL LINKS
55
c255a2ee 56EXTRA_DIST = Makefile.m4 $(man_MANS) mksofiles links toplevel stamp-so.in
f5984284 57
58## --- Various maintenance rules ---
59
60MAINTAINERCLEANFILES = SRC_LINKS $(srcdir)/Makefile.am $(srcdir)/stamp-so.in
61
62$(srcdir)/links $(srcdir)/toplevel: stamp-so.in
63
64$(srcdir)/stamp-so.in: TOPLEVEL
65 cd $(srcdir); ./mksofiles *.[1-9]
66 touch $(srcdir)/stamp-so.in
67
68$(srcdir)/Makefile.am: \
69 $(srcdir)/Makefile.m4 $(srcdir)/links $(srcdir)/toplevel
70 cd $(srcdir); m4 Makefile.m4 >Makefile.am
71
72##----- That's all, folks ---------------------------------------------------