Makefile.in (TAGS): Don't mess with c-parse.[ch].

* Makefile.in (TAGS): Don't mess with c-parse.[ch].
        Do include c-parse.in.

From-SVN: r82582
This commit is contained in:
Jason Merrill 2004-06-02 16:44:48 -04:00 committed by Jason Merrill
parent b9696fd41d
commit b25a893390
2 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2004-06-02 Jason Merrill <jason@redhat.com>
* Makefile.in (TAGS): Don't mess with c-parse.[ch].
Do include c-parse.in.
2004-06-02 Eric Christopher <echristo@redhat.com>
* c-typeck.c (common_type): Don't lose type qualifiers

View File

@ -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)
# ------------------------------------------------------