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