X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=Makefile.in;h=058e7d8bbbba62d36cdba12b2227aabd696b2029;hp=89cd54e280f8c5cc2fb388610df86509bed7289d;hb=1e9a7f8082f2ea4b496827be6b9ebbc4ac145839;hpb=bd2221448c3c545993ccf6f20365f01b5e9782e9 diff --git a/Makefile.in b/Makefile.in index 89cd54e..058e7d8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,8 +1,8 @@ # -# Makefile for top level of nmh distribution +# Makefile for top level of mmh distribution # -# nmh version +# mmh version VERSION = @VERSION@ SHELL = /bin/sh @@ -26,9 +26,12 @@ bindir = @bindir@ # location of support binaries and scripts libdir = @libdir@ -# location of nmh configuration and formats files +# location of mmh configuration and formats files etcdir = @sysconfdir@ +# location of ... +datarootdir = @datarootdir@ + # location of man pages mandir = @mandir@ @@ -38,12 +41,6 @@ mailspool = @mailspool@ # location of mail transport agent sendmailpath = @sendmailpath@ -# default editor -default_editor = @editorpath@ - -# default pager -default_pager = @pagerpath@ - CC = @CC@ CPPFLAGS = @CPPFLAGS@ DEFS = @DEFS@ @OURDEFS@ @@ -58,8 +55,7 @@ MAKEDEFS = CC='$(CC)' CPPFLAGS='$(CPPFLAGS)' DEFS='$(DEFS)' \ CFLAGS='$(CFLAGS)' LDFLAGS='$(LDFLAGS)' LIBS='$(LIBS)' \ prefix='$(prefix)' exec_prefix='$(exec_prefix)' bindir='$(bindir)' \ etcdir='$(etcdir)' libdir='$(libdir)' mandir='$(mandir)' \ -mailspool='$(mailspool)' sendmailpath='$(sendmailpath)' \ -default_editor='$(default_editor)' default_pager='$(default_pager)' +mailspool='$(mailspool)' sendmailpath='$(sendmailpath)' INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -68,9 +64,9 @@ INSTALL_DATA = @INSTALL_DATA@ .SUFFIXES: # all files in this directory included in the distribution -DIST = ChangeLog COPYRIGHT DATE INSTALL MACHINES README VERSION \ - ChangeLog install-sh mkinstalldirs Makefile.in aclocal.m4 \ - acconfig.h config.h.in configure.ac configure stamp-h.in \ +DIST = COPYRIGHT DATE INSTALL README VERSION \ + autogen.sh install-sh Makefile.in aclocal.m4 \ + acconfig.h config.h.in configure.ac configure stamp-h.in \ config.sub config.guess # subdirectories in distribution @@ -106,6 +102,7 @@ superclean: superclean-recursive superclean-local mostlyclean-local: rm -f *~ + rm -rf autom4te.cache clean-local: mostlyclean-local @@ -156,20 +153,17 @@ reset: cd $(srcdir) && autoconf cd $(srcdir) && date > stamp-h.in -# name of new nmh distribution tar file -tarfile = nmh-$(VERSION).tar.gz +# name of new mmh distribution tar file +tarfile = mmh-$(VERSION).tar.gz -# ftp directory location -ftpdir = /ftp/nmh - -# file containing name of new nmh distribution +# file containing name of new mmh distribution distname: - @echo nmh-$(VERSION) > distname + @echo mmh-$(VERSION) > distname -# build nmh distribution +# build mmh distribution distdir = `cat distname` -nmhdist: $(DIST) distname - @echo "Begin building nmh-$(VERSION) distribution" +mmhdist: $(DIST) distname + @echo "Begin building mmh-$(VERSION) distribution" rm -rf $(distdir) mkdir $(distdir) @chmod 755 $(distdir) @@ -185,13 +179,4 @@ nmhdist: $(DIST) distname chmod -R a+r $(distdir) tar chf - $(distdir) | gzip -c > $(tarfile) rm -rf $(distdir) distname - @echo "Done building nmh-$(VERSION) distribution" - -# release a new nmh distribution into ftp directory -nmhrelease: - rm -f $(ftpdir)/$(tarfile) - rm -f $(ftpdir)/nmh.tar.gz - mv $(tarfile) $(ftpdir)/$(tarfile) - cd $(ftpdir) && ln -s $(tarfile) nmh.tar.gz - cd $(ftpdir) && md5sum *.gz > MD5SUM - + @echo "Done building mmh-$(VERSION) distribution"