diff options
author | guerby <guerby@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-30 06:45:39 +0000 |
---|---|---|
committer | guerby <guerby@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-30 06:45:39 +0000 |
commit | dd53aa4f2b75fb2064c197fd610209ad70d70317 (patch) | |
tree | 783c75ec16d92bdcca2138686dcbaf6502ca9d50 /gnattools | |
parent | a4cb9727d2a35b463ae0440968aefc53fbb4465c (diff) | |
download | gcc-dd53aa4f2b75fb2064c197fd610209ad70d70317.tar.gz |
gcc/ChangeLog
2008-07-29 Laurent Guerby <laurent@guerby.net>
PR ada/5911
* gnattools/Makefile.in: Replace stamp-gnatlib by
stamp-gnatlib-rts.
gcc/ada/ChangeLog
2008-07-29 Laurent Guerby <laurent@guerby.net>
PR ada/5911
* gcc-interface/Makefile.in (MULTISUBDIR, RTSDIR): New variables.
Pass MULTISUBDIR to recursive make. Use $(RTSDIR) instead of rts.
Replace stamp-gnatlib* by stamp-gnatlib*-rts.
* gcc-interface/Make-lang.in: Replace stamp-gnatlib2
by stamp-gnatlib2-rts.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138294 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gnattools')
-rw-r--r-- | gnattools/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnattools/Makefile.in b/gnattools/Makefile.in index efc5f7575f0..de0f6e35feb 100644 --- a/gnattools/Makefile.in +++ b/gnattools/Makefile.in @@ -153,8 +153,8 @@ TOOLS_TARGET_PAIRS = @TOOLS_TARGET_PAIRS@ gnattools: @default_gnattools_target@ # Sanity check -$(GCC_DIR)/stamp-gnatlib: - @if [ ! -f $(GCC_DIR)/stamp-gnatlib ] ; \ +$(GCC_DIR)/stamp-gnatlib-rts: + @if [ ! -f $(GCC_DIR)/stamp-gnatlib-rts ] ; \ then \ echo "Cannot build gnattools while gnatlib is out of date or unbuilt" ; \ false; \ @@ -183,7 +183,7 @@ $(GCC_DIR)/stamp-tools: # to be able to build gnatmake without a version of gnatmake around. Once # everything has been compiled once, gnatmake can be recompiled with itself # (see target regnattools) -gnattools-native: $(GCC_DIR)/stamp-tools $(GCC_DIR)/stamp-gnatlib +gnattools-native: $(GCC_DIR)/stamp-tools $(GCC_DIR)/stamp-gnatlib-rts # gnattools1 $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \ $(TOOLS_FLAGS_TO_PASS_1) \ @@ -195,7 +195,7 @@ gnattools-native: $(GCC_DIR)/stamp-tools $(GCC_DIR)/stamp-gnatlib # gnatmake/link can be built with recent gnatmake/link if they are available. # This is especially convenient for building cross tools or for rebuilding # the tools when the original bootstrap has already be done. -regnattools: $(GCC_DIR)/stamp-gnatlib +regnattools: $(GCC_DIR)/stamp-gnatlib-rts # gnattools1-re $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \ $(TOOLS_FLAGS_TO_PASS_1re) \ |