diff options
author | Tom Tromey <tromey@redhat.com> | 1997-05-01 01:45:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1997-05-01 01:45:54 +0000 |
commit | e5d799a29da354eddea2c01000a469d4fef1fd78 (patch) | |
tree | b3b3bef25e47b452695add56bc2ecdf5ebed2823 /Makefile.in | |
parent | dbf75997a9c86dcf92e94aeba6d1e5ffa1b0799c (diff) | |
download | automake-e5d799a29da354eddea2c01000a469d4fef1fd78.tar.gz |
dist fix
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index 3aa3347ad..8c90d2631 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated automatically by automake 1.1o from Makefile.am +# Makefile.in generated automatically by automake 1.1p from Makefile.am # Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation @@ -359,6 +359,8 @@ distclean-tags: maintainer-clean-tags: distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) + # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. @@ -396,8 +398,9 @@ distdir: $(DISTFILES) rm -rf $(distdir) mkdir $(distdir) -chmod 777 $(distdir) - here=`cd $(top_builddir) && pwd`; top_distdir=`cd $$top_distdir && pwd` \ - && cd $(top_srcdir) \ + here=`cd $(top_builddir) && pwd`; \ + top_distdir=`cd $(top_distdir) && pwd`; \ + cd $(top_srcdir) \ && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnits Makefile @for file in $(DISTFILES); do \ d=$(srcdir); \ @@ -410,10 +413,10 @@ distdir: $(DISTFILES) || mkdir $(distdir)/$$subdir \ || exit 1; \ chmod 777 $(distdir)/$$subdir; \ - (cd $$subdir && $(MAKE) top_distdir=$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \ + (cd $$subdir && $(MAKE) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \ || exit 1; \ done - $(MAKE) top_distdir="$(distdir)" distdir="$(distdir)" dist-info + $(MAKE) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-info info: $(INFO_DEPS) info-recursive dvi: $(DVIS) dvi-recursive check: all-am @@ -454,7 +457,7 @@ clean-generic: distclean-generic: rm -f Makefile $(DISTCLEANFILES) - rm -f config.cache config.log stamp-h + rm -f config.cache config.log stamp-h stamp-h[0-9]* test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: |