From patchwork Tue Jun 8 20:20:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Move C front end to its own directory (1/3) Date: Tue, 08 Jun 2010 10:20:43 -0000 From: Jason Merrill X-Patchwork-Id: 55026 Message-Id: <4C0EA61B.9040807@redhat.com> To: Steven Bosscher Cc: Richard Guenther , "Joseph S. Myers" , GCC Patches , mark@codesourcery.com I have found that I need this additional patch. Any objection? commit 543e778629a857bde16cd634b44974ec5b4d8413 Author: Jason Merrill Date: Tue Jun 8 16:13:11 2010 -0400 * Makefile.in (TAGS): Collect tags info from c-family. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index a190225..806b4b1 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -4999,7 +4999,7 @@ TAGS: lang.tags incs="$$incs --include $$dir/TAGS.sub"; \ fi; \ done; \ - etags -o TAGS.sub *.h *.c; \ + etags -o TAGS.sub c-family/*.h c-family/*.c *.h *.c; \ etags --include TAGS.sub $$incs) # -----------------------------------------------------