chiark / gitweb /
debugging for thing that crashed
[inn-innduct.git] / doc / man / Makefile
1 ##  $Id: Makefile 7458 2005-12-12 00:25:05Z eagle $
2
3 include ../../Makefile.global
4
5 top     = ../..
6
7 ##  Edit these if you need to.
8 MANFLAGS = -c $(OWNER) -m 0444 -B .OLD
9
10 SEC1    = convdate.1 fastrm.1 getlist.1 grephistory.1 inews.1 innconfval.1 \
11         innfeed.1 innmail.1 nntpget.1 pgpverify.1 pullnews.1 rnews.1 \
12         shlock.1 shrinkfile.1 simpleftp.1 sm.1 startinnfeed.1
13
14 SEC3    = clientlib.3 dbz.3 inndcomm.3 libauth.3 libinn.3 libinnhist.3 \
15         libstorage.3 list.3 parsedate.3 qio.3 tst.3 uwildmat.3
16
17 SEC5    = active.5 active.times.5 buffindexed.conf.5 control.ctl.5 \
18         cycbuff.conf.5 distrib.pats.5 expire.ctl.5 history.5 incoming.conf.5 \
19         inn.conf.5 innfeed.conf.5 innwatch.ctl.5 moderators.5 motd.news.5 \
20         newsfeeds.5 nnrpd.track.5 newslog.5 nntpsend.ctl.5 ovdb.5 \
21         overview.fmt.5 passwd.nntp.5 radius.conf.5 readers.conf.5 sasl.conf.5 \
22         storage.conf.5 subscriptions.5
23
24 SEC8    = actsync.8 actsyncd.8 archive.8 auth_smb.8 batcher.8 buffchan.8 \
25         ckpasswd.8 cnfsheadconf.8 cnfsstat.8 controlchan.8 ctlinnd.8 \
26         cvtbatch.8 domain.8 expire.8 expireover.8 expirerm.8 filechan.8 \
27         ident.8 inncheck.8 innd.8 inndf.8 inndstart.8 innreport.8 innstat.8 \
28         innupgrade.8 innwatch.8 innxbatch.8 innxmit.8 mailpost.8 makedbz.8 \
29         makehistory.8 mod-active.8 news.daily.8 news2mail.8 ninpaths.8 \
30         nnrpd.8 nntpsend.8 ovdb_init.8 ovdb_monitor.8 ovdb_server.8 \
31         ovdb_stat.8 overchan.8 perl-nocem.8 prunehistory.8 radius.8 \
32         rc.news.8 scanlogs.8 send-nntp.8 send-uucp.8 sendinpaths.8 \
33         tally.control.8 tdx-util.8 writelog.8
34
35 COPY    = $(SHELL) ./putman.sh $(MANPAGESTYLE) "$(MANFLAGS)"
36
37 all:
38 clobber clean distclean:
39 tags ctags:
40 profiled:
41
42 install: install-man1 install-man3 install-man5 install-man8
43
44 install-man1:
45         for M in $(SEC1) ; do \
46             $(COPY) $$M $D$(MAN1)/$$M ; \
47         done
48
49 install-man3:
50         for M in $(SEC3) ; do \
51             $(COPY) $$M $D$(MAN3)/$$M ; \
52         done
53
54 install-man5:
55         for M in $(SEC5) ; do \
56             $(COPY) $$M $D$(MAN5)/$$M ; \
57         done
58
59 # auth_krb5 is conditionally compiled, so handle it specially.
60 install-man8:
61         for M in $(SEC8) ; do \
62             $(COPY) $$M $D$(MAN8)/$$M ; \
63         done
64         if [ x"$(KRB5_AUTH)" != x ] ; then \
65             $(COPY) auth_krb5.8 $D$(MAN8)/auth_krb5.8 ; \
66         fi