diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-02 20:44:48 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-02 20:44:48 +0000 |
commit | 8c6c48fc7c21be41ebe9fd07e4d6616e39a83149 (patch) | |
tree | f20f1617283fd909be40610732a3a2fd605717f8 /gcc/Makefile.in | |
parent | 32141c6aa425c569eda7aec33398edc737d97a9f (diff) | |
download | gcc-8c6c48fc7c21be41ebe9fd07e4d6616e39a83149.tar.gz |
* Makefile.in (TAGS): Don't mess with c-parse.[ch].
Do include c-parse.in.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82582 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 743f8e8c7f6..4625c0b83e6 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3517,11 +3517,7 @@ TAGS: lang.tags incs="$$incs --include $$dir/TAGS.sub"; \ fi; \ done; \ - mkdir tmp-tags; \ - mv -f c-parse.[ch] tmp-tags; \ - etags -o TAGS.sub *.y *.h *.c; \ - mv tmp-tags/* .; \ - rmdir tmp-tags; \ + etags -o TAGS.sub *.y *.h *.c -l yacc c-parse.in; \ etags --include TAGS.sub $$incs) # ------------------------------------------------------ |