Fixed make_bcc_file () to use contents of From: in draft, if draft_from masquerade...
[mmh] / Makefile.in
index 97313fc..2fa252c 100644 (file)
@@ -18,7 +18,7 @@ VPATH  = @srcdir@
 # If `make' is executed in the directory containing this Makefile,
 # any changes made in this section will override the values of
 # these parameters in makefiles in any of the subdirectories.
+
 prefix      = @prefix@
 exec_prefix = @exec_prefix@
 
@@ -33,7 +33,7 @@ etcdir      = @sysconfdir@
 
 # location of man pages
 mandir      = @mandir@
+
 # location of incoming mail
 mailspool   = @mailspool@
 
@@ -52,7 +52,7 @@ DEFS     = @DEFS@
 CFLAGS   = @CFLAGS@
 LDFLAGS  = @LDFLAGS@
 LIBS     = @LIBS@
+
 # ========== YOU SHOULDN'T HAVE TO CHANGE ANYTHING BELOW HERE ==========
 
 # flags passed to recursive makes in subdirectories
@@ -70,13 +70,13 @@ INSTALL_DATA    = @INSTALL_DATA@
 .SUFFIXES:
 
 # all files in this directory included in the distribution
-DIST = README INSTALL MACHINES COPYRIGHT VERSION DIFFERENCES FAQ \
-       TODO ZSH.COMPLETION MAIL.FILTERING ChangeLog install-sh \
-       mkinstalldirs Makefile.in aclocal.m4 acconfig.h config.h.in \
-       configure.in configure stamp-h.in
+DIST = ChangeLog COPYRIGHT DATE INSTALL MACHINES README VERSION                \
+       ChangeLog install-sh mkinstalldirs Makefile.in aclocal.m4       \
+       acconfig.h config.h.in configure.in configure stamp-h.in        \
+       config.sub config.guess
 
 # subdirectories in distribution
-SUBDIRS = h config sbr zotnet mts uip etc man
+SUBDIRS = h config sbr mts uip etc man docs
 
 # ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
 
@@ -88,7 +88,12 @@ all-recursive:
          (cd $$subdir && $(MAKE) $(MAKEDEFS) all) || exit 1; \
        done
 
-install uninstall:
+install: all
+       for subdir in $(SUBDIRS); do \
+         (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
+       done
+
+uninstall:
        for subdir in $(SUBDIRS); do \
          (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
        done
@@ -122,8 +127,15 @@ mostlyclean-recursive clean-recursive distclean-recursive realclean-recursive su
 
 # ========== DEPENDENCIES FOR MAINTENANCE ==========
 
+lint:
+       for subdir in $(SUBDIRS); do \
+         ( cd $$subdir && $(MAKE) $(MAKEDEFS) lint ) || exit 1; \
+       done
+
+# ========== DEPENDENCIES FOR MAINTENANCE ==========
+
 Makefile: Makefile.in config.status
-       CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
+       ./config.status $@
 
 config.status: configure VERSION
        ./config.status --recheck
@@ -133,18 +145,18 @@ configure: configure.in aclocal.m4
 
 config.h: stamp-h
 stamp-h: config.h.in config.status
-       CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
+       ./config.status config.h stamp
 
 config.h.in: stamp-h.in
 stamp-h.in: configure.in acconfig.h aclocal.m4
        cd $(srcdir) && autoheader
-       echo > $@
+       date > $@
 
 # rebuild all autoconf files
 reset:
        cd $(srcdir) && autoheader
        cd $(srcdir) && autoconf
-       cd $(srcdir) && echo > stamp-h.in
+       cd $(srcdir) && date > stamp-h.in
 
 # name of new nmh distribution tar file
 tarfile = nmh-$(VERSION).tar.gz