Updated the list of documentation files to be distributed.
[mmh] / docs / Makefile.in
1 #
2 # Makefile for h subdirectory
3 #
4
5 SHELL = /bin/sh
6
7 srcdir = @srcdir@
8 datarootdir = @datarootdir@
9 VPATH  = @srcdir@
10
11 # header files included in distribution
12 FILES = COMPLETION-BASH COMPLETION-TCSH COMPLETION-ZSH               \
13         ChangeLog_MH-3_to_MH-6.6 ChangeLog_MH-6.7.0_to_MH-6.8.4.html \
14         ChangeLog_nmh DIFFERENCES_nmh_MH MACHINES \
15         FAQ README.mail-filtering MAILING-LISTS \
16         README.attachments README.hooks README.SASL                  \
17         README.developers README.manpages TODO \
18         README.mhsign-mhpgp README.start-devel m_getfld.c.humor
19
20 # auxiliary files
21 AUX = Makefile.in
22
23 # all files in this directory included in the distribution
24 DIST = $(FILES) $(AUX)
25
26 # ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
27
28 all:
29
30 install:
31
32 uninstall:
33
34 lint:
35
36 # ========== DEPENDENCIES FOR CLEANUP ==========
37
38 mostlyclean:
39         rm -f *~
40
41 clean: mostlyclean
42
43 distclean: clean
44         rm -f Makefile
45
46 realclean: distclean
47
48 superclean: realclean
49
50 # ========== DEPENDENCIES FOR MAINTENANCE ==========
51
52 subdir = docs
53
54 Makefile: Makefile.in ../config.status
55         cd .. && ./config.status $(subdir)/$@
56
57 distdir = ../`cat ../distname`/$(subdir)
58 mmhdist:
59         @echo "Copying distribution files in $(subdir)"
60         @for file in $(DIST); do \
61           cp -p $(srcdir)/$$file $(distdir); \
62         done
63