df10b4b44563a37466794748fa2b3f5d8573ebe6
[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         ChangeLog_nmh DIFFERENCES_nmh_MH MACHINES \
14         FAQ README.mail-filtering MAILING-LISTS README.about    \
15         README.attachments README.hooks README.SASL                  \
16         README.developers README.manpages TODO
17
18 # auxiliary files
19 AUX = Makefile.in
20
21 # all files in this directory included in the distribution
22 DIST = $(FILES) $(AUX)
23
24 # ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
25
26 all:
27
28 install:
29
30 uninstall:
31
32 lint:
33
34 # ========== DEPENDENCIES FOR CLEANUP ==========
35
36 mostlyclean:
37         rm -f *~
38
39 clean: mostlyclean
40
41 distclean: clean
42         rm -f Makefile
43
44 realclean: distclean
45
46 superclean: realclean
47
48 # ========== DEPENDENCIES FOR MAINTENANCE ==========
49
50 subdir = docs
51
52 Makefile: Makefile.in ../config.status
53         cd .. && ./config.status $(subdir)/$@
54
55 distdir = ../`cat ../distname`/$(subdir)
56 mmhdist:
57         @echo "Copying distribution files in $(subdir)"
58         @for file in $(DIST); do \
59           cp -p $(srcdir)/$$file $(distdir); \
60         done
61