Pass MD5PROG to sub-makes when building .tar.bz2 archive.
This commit is contained in:
		| @@ -1,3 +1,10 @@ | |||||||
|  | Wed Apr 19 12:46:26 2000  Andrew Cagney  <cagney@b1.cygnus.com> | ||||||
|  |  | ||||||
|  | 	* Makefile.in (taz, gdb-taz, gas.tar.bz2, binutils.tar.bz2, | ||||||
|  |  	gas+binutils.tar.bz2, libg++.tar.bz2, gnats.tar.bz2, gdb.tar.bz2, | ||||||
|  |  	dejagnu.tar.bz2, gdb+dejagnu.tar.bz2, insight.tar.bz2, | ||||||
|  |  	insight+dejagnu.tar.bz2, newlib.tar.bz2): Pass MD5PROG to sub-make. | ||||||
|  |  | ||||||
| Wed Apr 12 16:42:48 2000  Andrew Cagney  <cagney@b1.cygnus.com> | Wed Apr 12 16:42:48 2000  Andrew Cagney  <cagney@b1.cygnus.com> | ||||||
|  |  | ||||||
| 	* Makefile.in (gdb-taz): New target.  GDB specific archive. | 	* Makefile.in (gdb-taz): New target.  GDB specific archive. | ||||||
|   | |||||||
							
								
								
									
										15
									
								
								Makefile.in
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								Makefile.in
									
									
									
									
									
								
							| @@ -1704,18 +1704,22 @@ PACKAGE = $(TOOL) | |||||||
| taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex | taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex | ||||||
| 	$(MAKE) -f Makefile.in do-proto-toplev \ | 	$(MAKE) -f Makefile.in do-proto-toplev \ | ||||||
| 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(SUPPORT_FILES)" | 		SUPPORT_FILES="$(SUPPORT_FILES)" | ||||||
| 	$(MAKE) -f Makefile.in do-md5sum \ | 	$(MAKE) -f Makefile.in do-md5sum \ | ||||||
| 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(SUPPORT_FILES)" | 		SUPPORT_FILES="$(SUPPORT_FILES)" | ||||||
| 	$(MAKE) -f Makefile.in do-tar-bz2 \ | 	$(MAKE) -f Makefile.in do-tar-bz2 \ | ||||||
| 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(SUPPORT_FILES)" | 		SUPPORT_FILES="$(SUPPORT_FILES)" | ||||||
|  |  | ||||||
| .PHONY: gdb-taz | .PHONY: gdb-taz | ||||||
| gdb-taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex | gdb-taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex | ||||||
| 	$(MAKE) -f Makefile.in taz \ | 	$(MAKE) -f Makefile.in taz \ | ||||||
| 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(SUPPORT_FILES)" | 		SUPPORT_FILES="$(SUPPORT_FILES)" | ||||||
|  |  | ||||||
| .PHONY: do-proto-toplev | .PHONY: do-proto-toplev | ||||||
| @@ -1793,6 +1797,7 @@ DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT) | |||||||
| GAS_SUPPORT_DIRS= bfd include libiberty opcodes intl setup.com makefile.vms mkdep | GAS_SUPPORT_DIRS= bfd include libiberty opcodes intl setup.com makefile.vms mkdep | ||||||
| gas.tar.bz2: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas | gas.tar.bz2: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas | ||||||
| 	$(MAKE) -f Makefile.in taz TOOL=gas \ | 	$(MAKE) -f Makefile.in taz TOOL=gas \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(GAS_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(GAS_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| # The FSF "binutils" release includes gprof and ld. | # The FSF "binutils" release includes gprof and ld. | ||||||
| @@ -1800,53 +1805,62 @@ gas.tar.bz2: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas | |||||||
| BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof intl setup.com makefile.vms mkdep | BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof intl setup.com makefile.vms mkdep | ||||||
| binutils.tar.bz2: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils | binutils.tar.bz2: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils | ||||||
| 	$(MAKE) -f Makefile.in taz TOOL=binutils \ | 	$(MAKE) -f Makefile.in taz TOOL=binutils \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: gas+binutils.tar.bz2 | .PHONY: gas+binutils.tar.bz2 | ||||||
| GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof | GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof | ||||||
| gas+binutils.tar.bz2: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas | gas+binutils.tar.bz2: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas | ||||||
| 	$(MAKE) -f Makefile.in taz TOOL=gas \ | 	$(MAKE) -f Makefile.in taz TOOL=gas \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(GASB_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(GASB_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: libg++.tar.bz2 | .PHONY: libg++.tar.bz2 | ||||||
| LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty | LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty | ||||||
| libg++.tar.bz2: $(DIST_SUPPORT) libg++ | libg++.tar.bz2: $(DIST_SUPPORT) libg++ | ||||||
| 	$(MAKE) -f Makefile.in taz TOOL=libg++ \ | 	$(MAKE) -f Makefile.in taz TOOL=libg++ \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| GNATS_SUPPORT_DIRS=include libiberty send-pr | GNATS_SUPPORT_DIRS=include libiberty send-pr | ||||||
| gnats.tar.bz2: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats | gnats.tar.bz2: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats | ||||||
| 	$(MAKE) -f  Makefile.in taz TOOL=gnats \ | 	$(MAKE) -f  Makefile.in taz TOOL=gnats \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: gdb.tar.bz2 | .PHONY: gdb.tar.bz2 | ||||||
| GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils intl | GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils intl | ||||||
| gdb.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb | gdb.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb | ||||||
| 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb \ | 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(GDB_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(GDB_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: dejagnu.tar.bz2 | .PHONY: dejagnu.tar.bz2 | ||||||
| DEJAGNU_SUPPORT_DIRS=  tcl expect libiberty | DEJAGNU_SUPPORT_DIRS=  tcl expect libiberty | ||||||
| dejagnu.tar.bz2: $(DIST_SUPPORT) $(DEJAGNU_SUPPORT_DIRS) dejagnu | dejagnu.tar.bz2: $(DIST_SUPPORT) $(DEJAGNU_SUPPORT_DIRS) dejagnu | ||||||
| 	$(MAKE) -f Makefile.in taz TOOL=dejagnu \ | 	$(MAKE) -f Makefile.in taz TOOL=dejagnu \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(DEJAGNU_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(DEJAGNU_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: gdb+dejagnu.tar.bz2 | .PHONY: gdb+dejagnu.tar.bz2 | ||||||
| GDBD_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl expect dejagnu | GDBD_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl expect dejagnu | ||||||
| gdb+dejagnu.tar.bz2: $(DIST_SUPPORT) $(GDBD_SUPPORT_DIRS) gdb | gdb+dejagnu.tar.bz2: $(DIST_SUPPORT) $(GDBD_SUPPORT_DIRS) gdb | ||||||
| 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=gdb+dejagnu \ | 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=gdb+dejagnu \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(GDBD_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(GDBD_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: insight.tar.bz2 | .PHONY: insight.tar.bz2 | ||||||
| INSIGHT_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl tk itcl tix libgui | INSIGHT_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl tk itcl tix libgui | ||||||
| insight.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb | insight.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb | ||||||
| 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=insight \ | 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=insight \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(INSIGHT_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(INSIGHT_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: insight+dejagnu.tar.bz2 | .PHONY: insight+dejagnu.tar.bz2 | ||||||
| INSIGHTD_SUPPORT_DIRS= $(INSIGHT_SUPPORT_DIRS) expect dejagnu | INSIGHTD_SUPPORT_DIRS= $(INSIGHT_SUPPORT_DIRS) expect dejagnu | ||||||
| insight+dejagnu.tar.bz2: $(DIST_SUPPORT) $(INSIGHTD_SUPPORT_DIRS) gdb | insight+dejagnu.tar.bz2: $(DIST_SUPPORT) $(INSIGHTD_SUPPORT_DIRS) gdb | ||||||
| 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE="insight+dejagnu" \ | 	$(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE="insight+dejagnu" \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(INSIGHTD_SUPPORT_DIRS)" | 		SUPPORT_FILES="$(INSIGHTD_SUPPORT_DIRS)" | ||||||
|  |  | ||||||
| .PHONY: newlib.tar.bz2 | .PHONY: newlib.tar.bz2 | ||||||
| @@ -1864,6 +1878,7 @@ NEWLIB_SUPPORT_DIRS=libgloss | |||||||
| # supports newlib (if only minimally). | # supports newlib (if only minimally). | ||||||
| newlib.tar.bz2: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib | newlib.tar.bz2: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib | ||||||
| 	$(MAKE) -f Makefile.in taz TOOL=newlib \ | 	$(MAKE) -f Makefile.in taz TOOL=newlib \ | ||||||
|  | 		MD5PROG="$(MD5PROG)" \ | ||||||
| 		SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \ | 		SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \ | ||||||
| 		DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib | 		DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user