This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[patch] top-level makefile tweeks


FYI,

I've imported the attatched from the GDB 5.0 branch.

	Andrew
Tue May 16 09:57:35 2000  Andrew Cagney  <cagney@b1.cygnus.com>

	Wed Apr 26 17:03:53 2000 Andrew Cagney <cagney@b1.cygnus.com>:
	* Makefile.in (do-djunpack): New target. Update djunpack.bat with
 	current version information.  Add to proto-toplev directory.
	(gdb-taz): Build do-djunpack.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/Makefile.in,v
retrieving revision 1.14
diff -p -r1.14 Makefile.in
*** Makefile.in	2000/04/19 06:00:03	1.14
--- Makefile.in	2000/05/15 23:59:15
*************** taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) te
*** 1717,1726 ****
  
  .PHONY: gdb-taz
  gdb-taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
! 	$(MAKE) -f Makefile.in taz \
  		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
  		MD5PROG="$(MD5PROG)" \
  		SUPPORT_FILES="$(SUPPORT_FILES)"
  
  .PHONY: do-proto-toplev
  do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
--- 1717,1738 ----
  
  .PHONY: gdb-taz
  gdb-taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
! 	$(MAKE) -f Makefile.in do-proto-toplev \
  		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
  		MD5PROG="$(MD5PROG)" \
  		SUPPORT_FILES="$(SUPPORT_FILES)"
+ 	$(MAKE) -f Makefile.in do-md5sum \
+ 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
+ 		MD5PROG="$(MD5PROG)" \
+ 		SUPPORT_FILES="$(SUPPORT_FILES)"
+ 	$(MAKE) -f Makefile.in do-djunpack \
+ 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
+ 		MD5PROG="$(MD5PROG)" \
+ 		SUPPORT_FILES="$(SUPPORT_FILES)"
+ 	$(MAKE) -f Makefile.in do-tar-bz2 \
+ 		TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
+ 		MD5PROG="$(MD5PROG)" \
+ 		SUPPORT_FILES="$(SUPPORT_FILES)"
  
  .PHONY: do-proto-toplev
  do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
*************** do-md5sum:
*** 1789,1794 ****
--- 1801,1816 ----
  	echo "==> Adding md5 checksum to top-level directory"
  	( cd proto-toplev && find * -follow -type f -print | xargs $(MD5PROG) ) > md5.sum
  	mv md5.sum proto-toplev
+ 
+ .PHONY: do-djunpack
+ do-djunpack:
+ 	echo "==> Adding updated djunpack.bat to top-level directory"
+ 	echo - 's /gdb-[0-9\.]*/gdb-'"$(VER)"'/'
+ 	sed < djunpack.bat > djunpack.new \
+ 		-e 's/gdb-[0-9][0-9\.]*/gdb-'"$(VER)"'/'
+ 	mv djunpack.new djunpack.bat
+ 	-rm -f proto-toplev/djunpack.bat
+ 	ln -s ../djunpack.bat proto-toplev/djunpack.bat
  
  TEXINFO_SUPPORT= texinfo/texinfo.tex
  DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]