Commit 3be3b97a authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

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

Avoid also "cd $(srcdir)" to not change the current directory.
parent a897aeee
...@@ -1605,10 +1605,9 @@ autoconf: ...@@ -1605,10 +1605,9 @@ autoconf:
# Create a tags file for vi # Create a tags file for vi
tags:: tags::
cd $(srcdir); \ ctags -w $(srcdir)/Include/*.h $(srcdir)/Include/internal/*.h
ctags -w Include/*.h Include/internal/*.h; \ for i in $(SRCDIRS); do ctags -f tags -w -a $(srcdir)/$$i/*.[ch]; done
for i in $(SRCDIRS); do ctags -f tags -w -a $$i/*.[ch]; \ ctags -f tags -w -a $(srcdir)/Modules/_ctypes/*.[ch]
done; \
LC_ALL=C sort -o tags tags LC_ALL=C sort -o tags tags
# Create a tags file for GNU Emacs # Create a tags file for GNU Emacs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment