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