diff options
author | Jeff Law <law@redhat.com> | 1998-11-11 05:47:18 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1998-11-11 05:47:18 +0000 |
commit | 10b2757be5c6b726a2e8b00d8eed80b9bca95369 (patch) | |
tree | de8c422308c83ebaf659acf7ab405ec97a17a1fa /config-ml.in | |
parent | a6ae89f731f2138c3589925e2820dcecfbd6704b (diff) | |
download | gdb-10b2757be5c6b726a2e8b00d8eed80b9bca95369.zip gdb-10b2757be5c6b726a2e8b00d8eed80b9bca95369.tar.gz gdb-10b2757be5c6b726a2e8b00d8eed80b9bca95369.tar.bz2 |
dummy commit before egcs merge
Diffstat (limited to 'config-ml.in')
-rw-r--r-- | config-ml.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config-ml.in b/config-ml.in index e5567a9..4909a49 100644 --- a/config-ml.in +++ b/config-ml.in @@ -99,6 +99,7 @@ fi # Scan all the arguments and set all the ones we need. +ml_verbose=--verbose for option in ${ml_arguments} do case $option in @@ -128,6 +129,9 @@ do --norecursion | --no*) ml_norecursion=yes ;; + --silent | --sil* | --quiet | --q*) + ml_verbose=--silent + ;; --verbose | --v | --verb*) ml_verbose=--verbose ;; @@ -214,6 +218,7 @@ arc-*-elf*) done fi ;; +# start-sanitize-m32rx m32r-*-*) if [ x$enable_m32rx = xno ] then @@ -227,6 +232,7 @@ m32r-*-*) done fi ;; +# end-sanitize-m32rx m68*-*-*) if [ x$enable_softfloat = xno ] then @@ -421,6 +427,7 @@ multi-do: CXXFLAGS="$(CXXFLAGS) $${flags}" \ LIBCFLAGS="$(LIBCFLAGS) $${flags}" \ LIBCXXFLAGS="$(LIBCXXFLAGS) $${flags}" \ + LDFLAGS="$(LDFLAGS) $${flags}" \ $(DO)); then \ true; \ else \ @@ -576,6 +583,13 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then fi (cd ${ml_dir}/${ml_libdir}; ../${dotdot}${ml_unsubdir}symlink-tree ../${dotdot}${ml_unsubdir}${ml_libdir} "") + if [ -f ${ml_dir}/${ml_libdir}/Makefile ]; then + if [ x"${MAKE}" = x ]; then + (cd ${ml_dir}/${ml_libdir}; make distclean) + else + (cd ${ml_dir}/${ml_libdir}; ${MAKE} distclean) + fi + fi ml_newsrcdir="." ml_srcdiroption= multisrctop=${dotdot} |