source: trunk/third/nmh/h/Makefile.in @ 12455

Revision 12455, 1.1 KB checked in by danw, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r12454, which included commits to RCS files with non-trunk default branches.
Line 
1#
2# Makefile for h subdirectory
3#
4# $Id: Makefile.in,v 1.1.1.1 1999-02-07 18:14:07 danw Exp $
5#
6
7SHELL = /bin/sh
8
9srcdir = @srcdir@
10VPATH  = @srcdir@
11
12# header files included in distribution
13HDRS = addrsbr.h aliasbr.h dropsbr.h fmt_compile.h fmt_scan.h \
14       md5.h mh.h mhcachesbr.h mhparse.h mime.h msh.h netdb.h nmh.h \
15       nntp.h picksbr.h popsbr.h prototypes.h rcvmail.h scansbr.h \
16       signals.h vmhsbr.h
17
18# auxiliary files
19AUX = Makefile.in
20
21# all files in this directory included in the distribution
22DIST = $(HDRS) $(AUX)
23
24# ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
25
26all:
27
28install:
29
30uninstall:
31
32# ========== DEPENDENCIES FOR CLEANUP ==========
33
34mostlyclean:
35        rm -f *~
36
37clean: mostlyclean
38
39distclean: clean
40        rm -f Makefile
41
42realclean: distclean
43
44superclean: realclean
45
46# ========== DEPENDENCIES FOR MAINTENANCE ==========
47
48subdir = h
49
50Makefile: Makefile.in ../config.status
51        cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
52 
53distdir = ../`cat ../distname`/$(subdir)
54nmhdist: $(DIST)
55        @echo "Copying distribution files in $(subdir)"
56        @for file in $(DIST); do \
57          cp -p $(srcdir)/$$file $(distdir); \
58        done
59
Note: See TracBrowser for help on using the repository browser.