diff options
| author | Martin Lucina <martin@lucina.net> | 2012-01-23 08:53:25 +0100 | 
|---|---|---|
| committer | Martin Lucina <martin@lucina.net> | 2012-01-23 08:53:25 +0100 | 
| commit | 5ba1cb20fe6f6699cef1cc726718e760cd4c9af1 (patch) | |
| tree | df7b144c5325fd8b3c88c49b456fafc24249abe6 /Makefile.in | |
| parent | a15854bd92db69fcd0b4444fe1b8fe3610a7acf6 (diff) | |
Imported Upstream version 2.0.9.dfsgupstream/2.0.9.dfsg
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 39 | 
1 files changed, 26 insertions, 13 deletions
| diff --git a/Makefile.in b/Makefile.in index ef1435c..dd96a49 100644 --- a/Makefile.in +++ b/Makefile.in @@ -34,9 +34,9 @@ host_triplet = @host@  subdir = .  DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \  	$(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ -	COPYING.LESSER ChangeLog INSTALL NEWS config/compile \ -	config/config.guess config/config.sub config/depcomp \ -	config/install-sh config/ltmain.sh config/missing +	COPYING.LESSER INSTALL NEWS config/compile config/config.guess \ +	config/config.sub config/depcomp config/install-sh \ +	config/ltmain.sh config/missing  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4  am__aclocal_m4_deps = $(top_srcdir)/config/libtool.m4 \  	$(top_srcdir)/config/ltoptions.m4 \ @@ -70,7 +70,7 @@ am__remove_distdir = \    { test ! -d $(distdir) \      || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \           && rm -fr $(distdir); }; } -DIST_ARCHIVES = $(distdir).tar.gz +DIST_ARCHIVES = $(distdir).tar.gz $(distdir).zip  GZIP_ENV = --best  distuninstallcheck_listfiles = find . -type f -print  distcleancheck_listfiles = find . -type f -print @@ -222,15 +222,15 @@ $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)  	@for dep in $?; do \  	  case '$(am__configure_deps)' in \  	    *$$dep*) \ -	      echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ -	      cd $(srcdir) && $(AUTOMAKE) --gnu  \ +	      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ +	      cd $(srcdir) && $(AUTOMAKE) --foreign  \  		&& exit 0; \  	      exit 1;; \  	  esac; \  	done; \ -	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  Makefile'; \ +	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  Makefile'; \  	cd $(top_srcdir) && \ -	  $(AUTOMAKE) --gnu  Makefile +	  $(AUTOMAKE) --foreign  Makefile  .PRECIOUS: Makefile  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status  	@case '$?' in \ @@ -461,7 +461,6 @@ dist-tarZ: distdir  dist-shar: distdir  	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz  	$(am__remove_distdir) -  dist-zip: distdir  	-rm -f $(distdir).zip  	zip -rq $(distdir).zip $(distdir) @@ -469,6 +468,8 @@ dist-zip: distdir  dist dist-all: distdir  	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz +	-rm -f $(distdir).zip +	zip -rq $(distdir).zip $(distdir)  	$(am__remove_distdir)  # This target untars the dist file and tries a VPATH configuration.  Then @@ -648,11 +649,23 @@ uninstall-am:  dist-hook: -		-cp $(top_srcdir)/builds/redhat/zeromq.spec $(distdir)/zeromq.spec -		-sed s/\@PACKAGE_VERSION\@/@PACKAGE_VERSION@/ -i $(distdir)/zeromq.spec -		-rm -rf $(distdir)/foreign/openpgm/@pgm_basename@ +	@if test -d "$(srcdir)/.git"; \ +	then \ +		echo Creating ChangeLog && \ +		( cd "$(top_srcdir)" && \ +		  echo '# Generated by Makefile. Do not edit.'; echo; \ +		  $(top_srcdir)/config/missing --run git log --stat ) > ChangeLog.tmp \ +		  && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \ +		  || ( rm -f ChangeLog.tmp ; \ +		       echo Failed to generate ChangeLog >&2 ); \ +	else \ +		echo A git clone is required to generate a ChangeLog >&2; \ +	fi +	-cp $(top_srcdir)/builds/redhat/zeromq.spec $(distdir)/zeromq.spec +	-sed s/\@PACKAGE_VERSION\@/@PACKAGE_VERSION@/ -i $(distdir)/zeromq.spec +	-rm -rf $(distdir)/foreign/openpgm/@pgm_basename@  distclean-local: -		-rm -rf $(top_srcdir)/foreign/openpgm/@pgm_basename@ +	-rm -rf $(top_srcdir)/foreign/openpgm/@pgm_basename@  # Tell versions [3.59,3.63) of GNU make to not export all variables.  # Otherwise a system limit (for SysV at least) may be exceeded.  .NOEXPORT: | 
