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