* Makefile.in: Add ILU targets.

* configure.in (host_tools): Add ILU.
Also add IDE sanitization to configure.in.
This commit is contained in:
Ian Lance Taylor 1997-05-06 17:07:38 +00:00
parent 91951af61f
commit 3718029fe6
3 changed files with 77 additions and 15 deletions

View File

@ -1,3 +1,15 @@
start-sanitize-ide
Tue May 6 11:23:57 1997 Ian Lance Taylor <ian@cygnus.com>
* Makefile.in: Add ILU targets.
* configure.in (host_tools): Add ILU.
end-sanitize-ide
Thu May 1 10:11:43 1997 Geoffrey Noer <noer@cygnus.com>
* install-sh: try appending a .exe if source file doesn't
exist
Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com>
* configure.in: Turn on multilib by default.

View File

@ -448,6 +448,9 @@ ALL_MODULES = \
all-grez \
all-gzip \
all-hello \
$(start-sanitize-ide) \
all-ilu \
$(end-sanitize-ide) \
all-indent \
all-inet \
all-ispell \
@ -516,6 +519,9 @@ CROSS_CHECK_MODULES = \
check-grep \
check-gzip \
check-hello \
$(start-sanitize-ide) \
check-ilu \
$(end-sanitize-ide) \
check-indent \
check-inet \
check-ispell \
@ -581,6 +587,9 @@ INSTALL_MODULES = \
install-grez \
install-gzip \
install-hello \
$(start-sanitize-ide) \
install-ilu \
$(end-sanitize-ide) \
install-indent \
install-inet \
install-ispell \
@ -724,6 +733,9 @@ CLEAN_MODULES = \
clean-grez \
clean-gzip \
clean-hello \
$(start-sanitize-ide) \
clean-ilu \
$(end-sanitize-ide) \
clean-indent \
clean-inet \
clean-ispell \
@ -1341,7 +1353,7 @@ all-gas: all-libiberty all-opcodes all-bfd
all-gash: all-tcl
all-gawk:
ALL_GCC = all-gcc
all-gcc: all-libiberty all-byacc all-binutils all-gas all-ld
all-gcc: all-byacc all-binutils all-gas all-ld
all-bootstrap: all-libiberty all-byacc all-binutils all-gas all-ld
GDB_TK = all-tk all-tcl
all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
@ -1353,6 +1365,9 @@ all-gui: all-gdb all-libproc all-target-librx
all-guile:
all-gzip: all-libiberty
all-hello: all-libiberty
# start-sanitize-ide
all-ilu:
# end-sanitize-ide
all-indent:
all-inet: all-tcl all-send-pr all-perl
all-ispell: all-emacs19
@ -1466,7 +1481,7 @@ ETC_SUPPORT= Makefile.in configure configure.in standards.texi \
# this macro.
SUPPORT_FILES = list-of-support-files-for-tool-in-question
# Files where "byacc" (Cygnus version) should be changed to "bison -y" (FSF).
DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in
DISTBISONFILES= binutils/Makefile.in gas/Makefile.in gdb/Makefile.in ld/Makefile.in
.PHONY: taz

View File

@ -41,7 +41,10 @@
# these libraries are used by various programs built for the host environment
#
host_libs="mmalloc libiberty opcodes bfd readline gash db tcl tk tclX itcl libide"
host_libs="mmalloc libiberty opcodes bfd readline gash db tcl tk tclX itcl"
# start-sanitize-ide
host_libs="${host_libs} libide"
# end-sanitize-ide
if [ "${enable_gdbgui}" = "yes" ] ; then
host_libs="${host_libs} libgui"
@ -50,8 +53,10 @@ fi
# these tools are built for the host environment
# Note, the powerpc-eabi build depends on sim occurring before gdb in order to
# know that we are building the simulator.
host_tools="texinfo byacc flex bison binutils ld gas gcc sim gdb make patch prms send-pr gprof gdbtest tgas etc expect dejagnu bash m4 autoconf ispell grep diff rcs cvs fileutils shellutils time textutils wdiff find emacs emacs19 uudecode hello tar gzip indent recode release sed utils guile perl apache inet gawk findutils sn vmake"
host_tools="texinfo byacc flex bison binutils ld gas gcc sim gdb make patch prms send-pr gprof gdbtest tgas etc expect dejagnu bash m4 autoconf ispell grep diff rcs cvs fileutils shellutils time textutils wdiff find emacs emacs19 uudecode hello tar gzip indent recode release sed utils guile perl apache inet gawk findutils sn"
# start-sanitize-ide
host_tools="${host_tools} ilu vmake"
# end-sanitize-ide
# these libraries are built for the target environment, and are built after
# the host libraries and the host tools (which may be a cross compiler)
@ -227,7 +232,10 @@ case ${with_x} in
yes | "") # the default value for this tree is that X11 is available
;;
no)
skipdirs="${skipdirs} tk gash libide vmake"
skipdirs="${skipdirs} tk gash"
# start-sanitize-ide
skipdirs="${skipdirs} libide vmake"
# end-sanitize-ide
;;
*)
echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
@ -371,13 +379,22 @@ noconfigdirs=""
case "${host}" in
i[3456]86-*-vsta)
noconfigdirs="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl db sn gnuserv libide vmake"
noconfigdirs="tcl expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
;;
i[3456]86-*-go32)
noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl db sn gnuserv libide vmake"
noconfigdirs="tcl tk expect dejagnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff guile perl apache inet itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
;;
*-*-cygwin32)
noconfigdirs="expect dejagnu cvs autoconf bison send-pr gprof rcs guile perl texinfo apache inet itcl db sn gnuserv libide vmake"
noconfigdirs="expect dejagnu cvs autoconf bison send-pr gprof rcs guile perl texinfo apache inet itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
;;
*-*-windows*)
# This is only used to build WinGDB...
@ -385,7 +402,10 @@ case "${host}" in
target_configdirs=
;;
ppc*-*-pe)
noconfigdirs="patch diff make tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs guile perl apache inet itcl db sn gnuserv libide vmake"
noconfigdirs="patch diff make tk tcl expect dejagnu cvs autoconf texinfo bison send-pr gprof rcs guile perl apache inet itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
;;
esac
@ -429,7 +449,10 @@ case "${target}" in
;;
# start-sanitize-d30v
d30v-*-*)
noconfigdirs="$noconfigdirs tcl tk expect gcc gdb newlib target-librx target-libg++ target-libstdc++ target-libio target-libgloss itcl db sn gnuserv target-libiberty target-newlib target-examples libide vmake"
noconfigdirs="$noconfigdirs tcl tk expect gcc gdb newlib target-librx target-libg++ target-libstdc++ target-libio target-libgloss itcl db sn gnuserv target-libiberty target-newlib target-examples"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
;;
# end-sanitize-d30v
h8300*-*-* | \
@ -457,7 +480,10 @@ case "${target}" in
;;
*-*-cygwin32)
target_configdirs="$target_configdirs target-winsup"
noconfigdirs="$noconfigdirs expect target-libgloss itcl db sn gnuserv libide vmake"
noconfigdirs="$noconfigdirs expect target-libgloss itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
# always build newlib.
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
@ -507,13 +533,19 @@ case "${target}" in
;;
powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
target_configdirs="$target_configdirs target-winsup"
noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl db sn gnuserv libide vmake"
noconfigdirs="$noconfigdirs gdb tcl tk make expect target-libgloss itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
# always build newlib.
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
;;
# This is temporary until we can link against shared libraries
powerpcle-*-solaris*)
noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl db sn gnuserv libide vmake"
noconfigdirs="$noconfigdirs gdb sim make tcl tk expect itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide vmake"
# end-sanitize-ide
;;
rs6000-*-lynxos*)
# The CVS server code doesn't work on the RS/6000
@ -610,7 +642,10 @@ esac
# If we are building a Canadian Cross, discard tools that can not be built
# using a cross compiler. FIXME: These tools should be fixed.
if [ "${build}" != "${host}" ]; then
noconfigdirs="$noconfigdirs expect dejagnu itcl db sn gnuserv libide vmake"
noconfigdirs="$noconfigdirs expect dejagnu itcl db sn gnuserv"
# start-sanitize-ide
noconfigdirs="$noconfigdirs libide ilu vmake"
# end-sanitize-ide
fi
# Make sure we don't let GNU ld be added if we didn't want it.