make tags: index also Modules/_ctypes/ (#4648) (#4660)

Avoid also "cd $(srcdir)" to not change the current directory.

(cherry picked from commit 3be3b97a97)
This commit is contained in:
Victor Stinner 2017-11-30 23:28:01 +01:00 committed by GitHub
parent 56e444f8df
commit 7d1cfeef64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -1378,10 +1378,9 @@ autoconf:
# Create a tags file for vi
tags::
cd $(srcdir); \
ctags -w Include/*.h; \
for i in $(SRCDIRS); do ctags -f tags -w -a $$i/*.[ch]; \
done; \
ctags -w $(srcdir)/Include/*.h
for i in $(SRCDIRS); do ctags -f tags -w -a $(srcdir)/$$i/*.[ch]; done
ctags -f tags -w -a $(srcdir)/Modules/_ctypes/*.[ch]
LC_ALL=C sort -o tags tags
# Create a tags file for GNU Emacs