Merged picksbr.c into pick.c.
[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 md5.h mf.h mh.h mhcachesbr.h mhparse.h mime.h        \
13        netdb.h nmh.h popsbr.h prototypes.h rcvmail.h         \
14        scansbr.h signals.h tws.h utils.h
15
16 # auxiliary files
17 AUX = Makefile.in
18
19 # all files in this directory included in the distribution
20 DIST = $(HDRS) $(AUX)
21
22 # ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
23
24 all:
25
26 install:
27
28 uninstall:
29
30 lint:
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 = h
49
50 Makefile: Makefile.in ../config.status
51         cd .. && ./config.status $(subdir)/$@
52
53 distdir = ../`cat ../distname`/$(subdir)
54 nmhdist: $(DIST)
55         @echo "Copying distribution files in $(subdir)"
56         @for file in $(DIST); do \
57           cp -p $(srcdir)/$$file $(distdir); \
58         done