diff options
author | kevinb <kevinb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-04 18:40:27 +0000 |
---|---|---|
committer | kevinb <kevinb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-04 18:40:27 +0000 |
commit | 062b02db101ec37235111edef2e3e14b182c6ac1 (patch) | |
tree | cc527ad32e2ea505ba64042f8d1fd966124d8287 | |
parent | ac2fce4fe85e8af9730f09b684aed566e9a69ad3 (diff) | |
download | gcc-062b02db101ec37235111edef2e3e14b182c6ac1.tar.gz |
Top level configury changes for RDA.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58797 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.def | 1 | ||||
-rw-r--r-- | Makefile.in | 16 | ||||
-rw-r--r-- | configure.in | 2 |
4 files changed, 19 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog index 8826886e5f7..8cdaa016777 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-11-04 Kevin Buettner <kevinb@redhat.com> + + * Makefile.def (host_modules): Add rda. + * Makefile.in: Regenerate. + * configure.in (target_tool): Add target-rda to list. + 2002-10-28 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * MAINTAINERS: Remove "co-maintainer" note for web pages. diff --git a/Makefile.def b/Makefile.def index 754b79ee08a..ae4b2e6fa0b 100644 --- a/Makefile.def +++ b/Makefile.def @@ -77,3 +77,4 @@ target_modules = { module= libjava; }; target_modules = { module= zlib; }; target_modules = { module= boehm-gc; }; target_modules = { module= qthreads; }; +target_modules = { module= rda; }; diff --git a/Makefile.in b/Makefile.in index 34d019fb35a..6f7689785cb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -760,7 +760,8 @@ ALL_TARGET_MODULES = \ all-target-libjava \ all-target-zlib \ all-target-boehm-gc \ - all-target-qthreads + all-target-qthreads \ + all-target-rda # This is a list of the configure targets for all of the modules which # are compiled using the target tools. @@ -779,7 +780,8 @@ CONFIGURE_TARGET_MODULES = \ configure-target-libjava \ configure-target-zlib \ configure-target-boehm-gc \ - configure-target-qthreads + configure-target-qthreads \ + configure-target-rda # This is a list of the check targets for all of the modules which are # compiled using $(TARGET_FLAGS_TO_PASS). @@ -795,7 +797,8 @@ CHECK_TARGET_MODULES = \ check-target-libjava \ check-target-zlib \ check-target-boehm-gc \ - check-target-qthreads + check-target-qthreads \ + check-target-rda # This is a list of the install targets for all of the modules which are # compiled using $(TARGET_FLAGS_TO_PASS). @@ -812,7 +815,8 @@ INSTALL_TARGET_MODULES = \ install-target-libjava \ install-target-zlib \ install-target-boehm-gc \ - install-target-qthreads + install-target-qthreads \ + install-target-rda # This is a list of the targets for which we can do a clean-{target}. CLEAN_MODULES = \ @@ -892,7 +896,8 @@ CLEAN_TARGET_MODULES = \ clean-target-libjava \ clean-target-zlib \ clean-target-boehm-gc \ - clean-target-qthreads + clean-target-qthreads \ + clean-target-rda # All of the x11 modules that can be cleaned CLEAN_X11_MODULES = \ @@ -1762,6 +1767,7 @@ all-target-libjava: configure-target-libjava all-target-zlib: configure-target-zlib all-target-boehm-gc: configure-target-boehm-gc all-target-qthreads: configure-target-qthreads +all-target-rda: configure-target-rda ### other supporting targets diff --git a/configure.in b/configure.in index 6b714947a66..21b86fde476 100644 --- a/configure.in +++ b/configure.in @@ -76,7 +76,7 @@ target_libs="target-libiberty \ # list belongs in this list. those programs are also very likely # candidates for the "native_only" list which follows # -target_tools="target-examples target-groff target-gperf" +target_tools="target-examples target-groff target-gperf target-rda" ################################################################################ |