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