diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-23 16:23:38 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-23 16:23:38 +0000 |
commit | 50fda5b0b6fa2506d68ec8ecf1d0e1ec1ec0c64c (patch) | |
tree | 688e605f3b26f54aa6fb70344916dce20ff742cb | |
parent | ad6ce89bb549e5655587c7128c2f4308134bc5c8 (diff) | |
download | fetchmail-50fda5b0b6fa2506d68ec8ecf1d0e1ec1ec0c64c.tar.gz fetchmail-50fda5b0b6fa2506d68ec8ecf1d0e1ec1ec0c64c.tar.bz2 fetchmail-50fda5b0b6fa2506d68ec8ecf1d0e1ec1ec0c64c.zip |
Ready to ship.
svn path=/trunk/; revision=110
-rw-r--r-- | Makefile.in | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/Makefile.in b/Makefile.in index b8643751..a21d1adc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,6 +3,8 @@ # If you're running QNX, we can't assume a working autoconf. # So just uncomment all the lines marked QNX. +VERS=3.2 + # Ultrix 2.2 make doesn't expand the value of VPATH. srcdir = @srcdir@ VPATH = @srcdir@ @@ -207,15 +209,16 @@ docs = $(srcdir)/COPYING $(srcdir)/README $(srcdir)/INSTALL $(srcdir)/NEWS \ config = $(srcdir)/Makefile.in $(srcdir)/configure.in $(srcdir)/configure \ $(srcdir)/config.guess $(srcdir)/config.h.in $(srcdir)/config.sub scripts = $(srcdir)/install.sh $(srcdir)/mkinstalldirs -all = $(docs) $(config) $(srcs) $(parser) $(headers) $(extra) $(scripts) +all = $(docs) $(config) $(srcs) $(parser) $(headers) $(extra) $(scripts) MANIFEST -manifest: - @echo $(all) | tr "[ \t]" '\n' | sort +manifest: $(all) + @echo $(all) | tr "[ \t]" '\n' | sort | sed "s/\\./popclient-$(VERS)/" -popclient.tar: $(all) - tar -cf popclient.tar $(all) -popclient.tar.gz: popclient.tar - gzip -f popclient.tar +popclient-$(VERS).tar: $(all) + (cd ..; tar -cf popclient-$(VERS).tar `cat popclient-$(VERS)/MANIFEST`) + mv ../popclient-$(VERS).tar popclient-$(VERS).tar +popclient-$(VERS).tar.gz: popclient-$(VERS).tar + gzip -f popclient-$(VERS).tar # The automatically generated dependencies below may omit config.h # because it is included with ``#include <config.h>'' rather than |