Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3be3b97a
Commit
3be3b97a
authored
Nov 30, 2017
by
Victor Stinner
Committed by
GitHub
Nov 30, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make tags: index also Modules/_ctypes/ (#4648)
Avoid also "cd $(srcdir)" to not change the current directory.
parent
a897aeee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
Makefile.pre.in
Makefile.pre.in
+3
-4
No files found.
Makefile.pre.in
View file @
3be3b97a
...
...
@@ -1605,10 +1605,9 @@ autoconf:
# Create a tags file for vi
tags
::
cd
$(srcdir)
;
\
ctags
-w
Include/
*
.h Include/internal/
*
.h
;
\
for
i
in
$(SRCDIRS)
;
do
ctags
-f
tags
-w
-a
$$
i/
*
.[ch]
;
\
done
;
\
ctags
-w
$(srcdir)
/Include/
*
.h
$(srcdir)
/Include/internal/
*
.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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment