diff options
author | Tom Tromey <tromey@redhat.com> | 2008-04-16 21:10:37 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2008-04-16 21:10:37 +0000 |
commit | 7f27b0f8a21d8ca08c2ea815a3fdb0816b77b867 (patch) | |
tree | ff7afc917872772032c2e06c84d50688779e810c /libcpp | |
parent | c240868146f0421a88ea96f9fdbe42e0327805be (diff) | |
download | gcc-7f27b0f8a21d8ca08c2ea815a3fdb0816b77b867.zip gcc-7f27b0f8a21d8ca08c2ea815a3fdb0816b77b867.tar.gz gcc-7f27b0f8a21d8ca08c2ea815a3fdb0816b77b867.tar.bz2 |
Makefile.in (TAGS_SOURCES): New variable.
* Makefile.in (TAGS_SOURCES): New variable.
(TAGS): New target.
From-SVN: r134367
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/ChangeLog | 5 | ||||
-rw-r--r-- | libcpp/Makefile.in | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 02de9d0..0eb632f 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2008-04-16 Tom Tromey <tromey@redhat.com> + + * Makefile.in (TAGS_SOURCES): New variable. + (TAGS): New target. + 2008-04-11 Kaz Kojima <kkojima@gcc.gnu.org> * configure.ac: (need_64bit_hwint): Need 64bit hwint for sh-*-* diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in index 4112c66..e4d6a48 100644 --- a/libcpp/Makefile.in +++ b/libcpp/Makefile.in @@ -246,6 +246,12 @@ po/$(PACKAGE).pot: $(libcpp_a_SOURCES) sed 's:$(srcdir)/::g' <po/$(PACKAGE).pot.tmp >po/$(PACKAGE).pot rm po/$(PACKAGE).pot.tmp +TAGS_SOURCES = $(libcpp_a_SOURCES) makedepend.c internal.h ucnid.h \ + include/line-map.h include/symtab.h include/cpp-id-data.h \ + include/cpplib.h include/mkdeps.h system.h + +TAGS: $(TAGS_SOURCES) + cd $(srcdir) && etags $(TAGS_SOURCES) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |