From: Ken Raeburn Date: Fri, 5 Nov 1993 18:37:43 +0000 (+0000) Subject: * Makefile.in (taz): Only build "info" in DISTDOCDIRS. X-Git-Tag: gdb-4_18~16704 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ea18081db683908756fef0844c2eb28afc63fa9c;p=platform%2Fupstream%2Fbinutils.git * Makefile.in (taz): Only build "info" in DISTDOCDIRS. (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want this now. --- diff --git a/ChangeLog b/ChangeLog index 3492dab..7625e5a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Nov 5 10:35:05 1993 Ken Raeburn (raeburn@rover.cygnus.com) + + * Makefile.in (taz): Only build "info" in DISTDOCDIRS. + (DISTDOCDIRS): Don't assume libg++ and gdb folks necessarily want + this now. + Thu Nov 4 18:58:23 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * config.sub: Accept hiux* as an OS name. diff --git a/Makefile.in b/Makefile.in index 0a1b886..3ba3731 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1053,8 +1053,8 @@ SUPPORT_FILES = list-of-support-files-for-tool-in-question DISTSTUFFDIRS= ld gprof gdb libg++ binutils # Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF). DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in -# Directories where "info" and "dvi" should be built. -DISTDOCDIRS= ld gprof binutils gdb libg++ gas bfd +# Directories where "info" should be built. +DISTDOCDIRS= ld gprof binutils gas bfd .PHONY: taz @@ -1079,7 +1079,7 @@ taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \ # Doc files don't change; include them in distribution. for f in $(DISTDOCDIRS) ; do \ if [ -r $$f/Makefile ]; then \ - (cd $$f ; $(MAKE) info dvi) || exit 1 ; \ + (cd $$f ; $(MAKE) info) || exit 1 ; \ else true ; fi ; \ done # Make links, and run "make diststuff" when needed.