chiark / gitweb /
New program to make fixed tables for universal hashing.
[mLib] / man / Makefile.am
CommitLineData
f5984284 1## -*-makefile-*-
2##
18756bee 3## $Id: Makefile.am,v 1.8 2003/12/15 20:53:08 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##
c3b137c8 31## $Log: Makefile.am,v $
18756bee 32## Revision 1.8 2003/12/15 20:53:08 mdw
33## New program to make fixed tables for universal hashing.
34##
df852be0 35## Revision 1.7 2003/12/14 14:57:35 mdw
36## Distribute unihash manpage.
37##
14d7100d 38## Revision 1.6 2003/12/13 20:37:59 mdw
39## Add adns support in background resolver.
40##
ad61a8f8 41## Revision 1.5 2003/11/29 11:59:17 mdw
42## Various stuff.
43##
fb3c7527 44## Revision 1.4 2003/11/09 13:48:32 mdw
45## Ooops. Fix distribution.
46##
7c14e955 47## Revision 1.3 2003/11/09 13:13:49 mdw
48## Document crc-mktab a little.
49##
aeec452c 50## Revision 1.2 2003/05/16 00:24:05 mdw
51## maninst isn't shipped here.
52##
c3b137c8 53## Revision 1.1 2003/04/23 12:48:19 mdw
54## New manpage installer.
55##
c255a2ee 56## Revision 1.2 1999/07/06 19:36:05 mdw
57## Various minor bugfixes.
58##
f5984284 59## Revision 1.1 1999/07/06 19:14:22 mdw
60## Makefile for manual page installation. Subtle and complicated.
61##
62
c3b137c8 63AUTOMAKE_OPTIONS = foreign
f5984284 64
c3b137c8 65manext = @manext@
f5984284 66
67## --- Manual pages ---
68
c3b137c8 69MANPAGES = \
18756bee 70 crc-mktab.1 unihash-mkstatic.1
7c14e955 71
72MANPAGESEXT = \
c3b137c8 73 alloc.3 arena.3 assoc.3 atom.3 base64.3 bits.3 bres.3 conn.3 \
74 crc32.3 darray.3 dspool.3 dstr.3 env.3 exc.3 fdflags.3 fwatch.3 \
75 hash.3 ident.3 lbuf.3 lock.3 mLib.3 mdwopt.3 pkbuf.3 pool.3 \
76 quis.3 report.3 sel.3 selbuf.3 selpk.3 sig.3 str.3 sub.3 sym.3 \
df852be0 77 testrig.3 trace.3 tv.3 url.3 hex.3 fdpass.3 macros.3 unihash.3
f5984284 78
c3b137c8 79install-man: $(MANPAGES)
80 @$(NORMAL_INSTALL)
81 $(mkinstalldirs) $(DESTDIR)$(mandir)
82 $(top_srcdir)/maninst \
83 -d $(DESTDIR)$(mandir) -s $(srcdir) \
7c14e955 84 -i "$(INSTALL)" \
c3b137c8 85 install $(MANPAGES)
7c14e955 86 $(top_srcdir)/maninst \
87 -d $(DESTDIR)$(mandir) -s $(srcdir) \
88 -i "$(INSTALL)" -e $(manext) \
89 install $(MANPAGESEXT)
f5984284 90
c3b137c8 91uninstall-man: $(MANPAGS)
92 @$(NORMAL_UNINSTALL)
93 $(top_srcdir)/maninst \
7c14e955 94 -d $(DESTDIR)$(mandir) -s $(srcdir) \
c3b137c8 95 uninstall $(MANPAGES)
7c14e955 96 $(top_srcdir)/maninst \
97 -d $(DESTDIR)$(mandir) -s $(srcdir) -e $(manext) \
98 uninstall $(MANPAGESEXT)
f5984284 99
c3b137c8 100install-data-local: install-man
101uninstall-local: uninstall-man
f5984284 102
fb3c7527 103EXTRA_DIST = $(MANPAGES) $(MANPAGESEXT)
f5984284 104
105##----- That's all, folks ---------------------------------------------------