31237d0e765fa431ba9c91cecd9753234f911a4e
[mmh] / h / 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 HDRS = addrsbr.h aliasbr.h crawl_folders.h dropsbr.h fmt_compile.h \
12        fmt_scan.h mf.h mh.h mhparse.h mime.h \
13        prototypes.h rcvmail.h scansbr.h signals.h tws.h utils.h
14
15 # auxiliary files
16 AUX = Makefile.in
17
18 # all files in this directory included in the distribution
19 DIST = $(HDRS) $(AUX)
20
21 # ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
22
23 all:
24
25 install:
26
27 uninstall:
28
29 lint:
30
31 # ========== DEPENDENCIES FOR CLEANUP ==========
32
33 mostlyclean:
34         rm -f *~
35
36 clean: mostlyclean
37
38 distclean: clean
39         rm -f Makefile
40
41 realclean: distclean
42
43 superclean: realclean
44
45 # ========== DEPENDENCIES FOR MAINTENANCE ==========
46
47 subdir = h
48
49 Makefile: Makefile.in ../config.status
50         cd .. && ./config.status $(subdir)/$@
51
52 distdir = ../`cat ../distname`/$(subdir)
53 mmhdist: $(DIST)
54         @echo "Copying distribution files in $(subdir)"
55         @for file in $(DIST); do \
56           cp -p $(srcdir)/$$file $(distdir); \
57         done