diff options
author | Jason Merrill <jason@redhat.com> | 2015-10-28 15:45:33 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2015-10-28 15:45:33 -0400 |
commit | 08585fba891c73790a3a4354bc26f0fe02be4d9c (patch) | |
tree | eae4ee6f41aacaafa8e261c5601e34e59de5bf7e | |
parent | 4839652517481cdca7a921abb13e492e2f81c6b1 (diff) | |
download | gcc-08585fba891c73790a3a4354bc26f0fe02be4d9c.zip gcc-08585fba891c73790a3a4354bc26f0fe02be4d9c.tar.gz gcc-08585fba891c73790a3a4354bc26f0fe02be4d9c.tar.bz2 |
Make-lang.in (c.tags): Also include libcpp TAGS.
gcc/c/
* Make-lang.in (c.tags): Also include libcpp TAGS.
gcc/cp/
* Make-lang.in (c++.tags): Also include libcpp TAGS.
From-SVN: r229504
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/Makefile.in | 3 | ||||
-rw-r--r-- | libiberty/ChangeLog | 4 | ||||
-rw-r--r-- | libiberty/Makefile.in | 8 |
4 files changed, 13 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc863ce..c2d465a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-10-28 Jason Merrill <jason@redhat.com> + + * Makefile.in (TAGS): Include libcpp and libiberty. + 2015-10-28 Nathan Sidwell <nathan@codesourcery.com> * omp-low.c (MASK_GANG, MASK_WORKER, MASK_VECTOR): Delete. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 2685b38..6778f7d 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3907,7 +3907,8 @@ TAGS: lang.tags fi; \ done; \ etags -o TAGS.sub c-family/*.h c-family/*.c *.h *.c *.cc \ - ../include/*.h \ + ../include/*.h ../libiberty/*.c \ + ../libcpp/*.c ../libcpp/include/*.h \ --language=none --regex="/\(char\|unsigned int\|int\|bool\|void\|HOST_WIDE_INT\|enum [A-Za-z_0-9]+\) [*]?\([A-Za-z_0-9]+\)/\2/" common.opt \ --language=none --regex="/\(DEF_RTL_EXPR\|DEFTREECODE\|DEFGSCODE\).*(\([A-Za-z_0-9]+\)/\2/" rtl.def tree.def gimple.def \ --language=none --regex="/DEFTIMEVAR (\([A-Za-z_0-9]+\)/\1/" timevar.def \ diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 3fe0f69..b5ac836 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,7 @@ +2015-10-28 Jason Merrill <jason@redhat.com> + + * Makefile.in (TAGS): Fix for separate build directory. + 2015-10-18 Roland McGrath <roland@gnu.org> Iain Sandoe <iain@codesourcery.com> diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 7d7e2f4..9f7f70d 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -406,12 +406,10 @@ stamp-noasandir: else true; fi touch stamp-noasandir -.PHONY: all etags tags ls clean stage1 stage2 +.PHONY: all etags tags TAGS ls clean stage1 stage2 -etags tags: TAGS etags-subdir - -TAGS: $(CFILES) - etags `for i in $(CFILES); do echo $(srcdir)/$$i ; done` +etags tags TAGS: etags-subdir + cd $(srcdir); etags $(CFILES) # The standalone demangler (c++filt) has been moved to binutils. # But make this target work anyway for demangler hacking. |