]> diplodocus.org Git - nmh/blob - docs/Makefile.in
Sigh. I put the documentation about the -tls switch in the long description,
[nmh] / docs / Makefile.in
1 #
2 # Makefile for h subdirectory
3 #
4
5 SHELL = /bin/sh
6
7 top_srcdir = @top_srcdir@
8 srcdir = @srcdir@
9 docdir = @docdir@
10 VPATH = @srcdir@
11
12 # files included in distribution
13 TOPDIR_FILES_TO_INSTALL = COPYRIGHT VERSION
14 FILES_TO_INSTALL = COMPLETION-BASH COMPLETION-TCSH COMPLETION-ZSH \
15 DIFFERENCES FAQ MAIL.FILTERING MAILING-LISTS \
16 README-ATTACHMENTS README-HOOKS README.about \
17 README.SASL README.developers README.manpages \
18 TODO
19 FILES = $(FILES_TO_INSTALL) \
20 ChangeLog_MH-3_to_MH-6.6 ChangeLog_MH-6.7.0_to_MH-6.8.4.html
21
22 # auxiliary files
23 AUX = Makefile.in
24
25 # all files in this directory included in the distribution
26 DIST = $(FILES) $(AUX)
27
28 INSTALL = @INSTALL@
29 INSTALL_DATA = @INSTALL_DATA@
30
31 # ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
32
33 all:
34
35 install: all
36 $(top_srcdir)/mkinstalldirs $(DESTDIR)$(docdir)
37 for file in $(TOPDIR_FILES_TO_INSTALL); do \
38 $(INSTALL_DATA) $(top_srcdir)/$$file $(DESTDIR)$(docdir); \
39 done
40 for file in $(FILES_TO_INSTALL); do \
41 $(INSTALL_DATA) $$file $(DESTDIR)$(docdir); \
42 done
43
44 uninstall:
45 for file in $(TOPDIR_FILES_TO_INSTALL) $(FILES_TO_INSTALL); do \
46 $(RM) $(DESTDIR)$(docdir)/$$file; \
47 done
48
49 lint:
50
51 # ========== DEPENDENCIES FOR CLEANUP ==========
52
53 mostlyclean:
54 rm -f *~
55
56 clean: mostlyclean
57
58 distclean: clean
59 rm -f Makefile
60
61 realclean: distclean
62
63 superclean: realclean
64
65 # ========== DEPENDENCIES FOR MAINTENANCE ==========
66
67 subdir = docs
68
69 Makefile: Makefile.in ../config.status
70 cd .. && ./config.status $(subdir)/$@
71
72 distdir = ../`cat ../distname`/$(subdir)
73 nmhdist:
74 @echo "Copying distribution files in $(subdir)"
75 @for file in $(DIST); do \
76 cp -p $(srcdir)/$$file $(distdir); \
77 done