93c3ab55c22036141292bf74b26408060926f3cf
[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-TCSH COMPLETION-ZSH ChangeLog_MH-3_to_MH-6.6 \
14         ChangeLog_MH-6.7.0_to_MH-6.8.4.html DIFFERENCES FAQ \
15         MAIL.FILTERING MAILING-LISTS README.about \
16         README.developers 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 # ========== DEPENDENCIES FOR CLEANUP ==========
33
34 mostlyclean:
35         rm -f *~
36
37 clean: mostlyclean
38
39 distclean: clean
40         rm -f Makefile
41
42 realclean: distclean
43
44 superclean: realclean
45
46 # ========== DEPENDENCIES FOR MAINTENANCE ==========
47
48 subdir = docs
49
50 Makefile: Makefile.in ../config.status
51         cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
52  
53 distdir = ../`cat ../distname`/$(subdir)
54 nmhdist: 
55         @echo "Copying distribution files in $(subdir)"
56         @for file in $(DIST); do \
57           cp -p $(srcdir)/$$file $(distdir); \
58         done
59