diff options
author | Ranjit Mathew <rmathew@hotmail.com> | 2004-05-17 15:51:22 +0000 |
---|---|---|
committer | Ranjit Mathew <rmathew@gcc.gnu.org> | 2004-05-17 15:51:22 +0000 |
commit | a2824db366a429dd08c368dc56620a92d4a6542b (patch) | |
tree | 5f106bca6e7c155288a1fa0c01d7d9b37c68e5ae /gcc | |
parent | 2c6b27c369a9d2ab7f7116add931089b9e8f7b69 (diff) | |
download | gcc-a2824db366a429dd08c368dc56620a92d4a6542b.zip gcc-a2824db366a429dd08c368dc56620a92d4a6542b.tar.gz gcc-a2824db366a429dd08c368dc56620a92d4a6542b.tar.bz2 |
Enable tree browser for all front ends.
* Makefile.in (cc1): Moved @TREEBROWSER@ from here...
(BACKEND): ...to here.
From-SVN: r81939
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 906b4d5..cdbfa2f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-05-17 Ranjit Mathew <rmathew@hotmail.com> + + Enable tree browser for all front ends. + * Makefile.in (cc1): Moved @TREEBROWSER@ from here... + (BACKEND): ...to here. + 2004-05-17 Jan Hubicka <jh@suse.cz> * i386.c (construct_container): Do not produce BLKmode registers. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5379c8e..39fbe32 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -906,7 +906,7 @@ OBJS = $(OBJS-common) $(out_object_file) $(OBJS-archive) OBJS-onestep = libbackend.o $(OBJS-archive) -BACKEND = main.o libbackend.a +BACKEND = main.o @TREEBROWSER@ libbackend.a # Files to be copied away after each stage in building. STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \ @@ -1155,9 +1155,9 @@ $(SPECS): xgcc$(exeext) gcc-cross: xgcc$(exeext) cp xgcc$(exeext) gcc-cross$(exeext) -cc1$(exeext): $(C_OBJS) $(BACKEND) $(LIBDEPS) @TREEBROWSER@ +cc1$(exeext): $(C_OBJS) $(BACKEND) $(LIBDEPS) $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1$(exeext) \ - $(C_OBJS) @TREEBROWSER@ $(BACKEND) $(LIBS) + $(C_OBJS) $(BACKEND) $(LIBS) # Build the version of limits.h that we will install. xlimits.h: glimits.h limitx.h limity.h |