chiark / gitweb /
Fix distribution stuff.
[mLib] / man / Makefile.am
1 ## -*-makefile-*-
2 ##
3 ## $Id$
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 AUTOMAKE_OPTIONS = foreign
30
31 manext = @manext@
32
33 ## --- Manual pages ---
34
35 MANPAGES = \
36         crc-mktab.1 unihash-mkstatic.1
37
38 MANPAGESEXT = \
39         alloc.3 arena.3 assoc.3 atom.3 base32.3 base64.3 bits.3 bres.3 \
40         buf.3 conn.3 crc32.3 darray.3 dspool.3 dstr.3 env.3 exc.3 \
41         fdflags.3 fwatch.3 hash.3 ident.3 lbuf.3 lock.3 mLib.3 mdwopt.3 \
42         pkbuf.3 pool.3 quis.3 report.3 sel.3 selbuf.3 selpk.3 sig.3 \
43         str.3 sub.3 sym.3 testrig.3 trace.3 tv.3 url.3 hex.3 fdpass.3 \
44         macros.3 unihash.3
45
46 install-man: $(MANPAGES)
47         @$(NORMAL_INSTALL)
48         $(mkinstalldirs) $(DESTDIR)$(mandir)
49         $(top_srcdir)/maninst \
50                 -d $(DESTDIR)$(mandir) -s $(srcdir) \
51                 -i "$(INSTALL)" \
52                 install $(MANPAGES)
53         $(top_srcdir)/maninst \
54                 -d $(DESTDIR)$(mandir) -s $(srcdir) \
55                 -i "$(INSTALL)" -e $(manext) \
56                 install $(MANPAGESEXT)
57
58 uninstall-man: $(MANPAGS)
59         @$(NORMAL_UNINSTALL)
60         $(top_srcdir)/maninst \
61                 -d $(DESTDIR)$(mandir) -s $(srcdir) \
62                 uninstall $(MANPAGES)
63         $(top_srcdir)/maninst \
64                 -d $(DESTDIR)$(mandir) -s $(srcdir) -e $(manext) \
65                 uninstall $(MANPAGESEXT)
66
67 install-data-local: install-man
68 uninstall-local: uninstall-man
69
70 EXTRA_DIST = $(MANPAGES) $(MANPAGESEXT)
71
72 ##----- That's all, folks ---------------------------------------------------