Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
4216e6a6
Commit
4216e6a6
authored
Mar 04, 2015
by
Michael Arntzenius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile: add TAGS generation
parent
39859d79
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
.gitignore
.gitignore
+1
-0
Makefile
Makefile
+8
-1
No files found.
.gitignore
View file @
4216e6a6
...
@@ -35,6 +35,7 @@ stdlib*.ll
...
@@ -35,6 +35,7 @@ stdlib*.ll
oprofile_data
oprofile_data
pprof.jit
pprof.jit
tags
tags
TAGS
*.pyc
*.pyc
perf.data
perf.data
...
...
Makefile
View file @
4216e6a6
...
@@ -37,6 +37,9 @@ VERBOSE := 0
...
@@ -37,6 +37,9 @@ VERBOSE := 0
ENABLE_INTEL_JIT_EVENTS
:=
0
ENABLE_INTEL_JIT_EVENTS
:=
0
CTAGS
:=
ctags
ETAGS
:=
ctags-exuberant
-e
# Setting this to 1 will set the Makefile to use binaries from the trunk
# Setting this to 1 will set the Makefile to use binaries from the trunk
# directory, even if USE_TEST_LLVM is set to 1.
# directory, even if USE_TEST_LLVM is set to 1.
# This is useful if clang isn't installed into the test directory, ex due
# This is useful if clang isn't installed into the test directory, ex due
...
@@ -325,7 +328,11 @@ all: pyston_dbg pyston_release pyston_prof ext_python ext_pyston unittests
...
@@ -325,7 +328,11 @@ all: pyston_dbg pyston_release pyston_prof ext_python ext_pyston unittests
ALL_HEADERS
:=
$(
wildcard
src/
*
/
*
.h
)
$(
wildcard
src/
*
/
*
/
*
.h
)
$(
wildcard
from_cpython/Include/
*
.h
)
ALL_HEADERS
:=
$(
wildcard
src/
*
/
*
.h
)
$(
wildcard
src/
*
/
*
/
*
.h
)
$(
wildcard
from_cpython/Include/
*
.h
)
tags
:
$(SRCS) $(OPTIONAL_SRCS) $(FROM_CPYTHON_SRCS) $(ALL_HEADERS)
tags
:
$(SRCS) $(OPTIONAL_SRCS) $(FROM_CPYTHON_SRCS) $(ALL_HEADERS)
$(ECHO)
Calculating tags...
$(ECHO)
Calculating tags...
$(VERB)
ctags
$^
$(VERB)
$(CTAGS)
$^
TAGS
:
$(SRCS) $(OPTIONAL_SRCS) $(FROM_CPYTHON_SRCS) $(ALL_HEADERS)
$(ECHO)
Calculating TAGS...
$(VERB)
$(ETAGS)
$^
NON_ENTRY_OBJS
:=
$(
filter-out
src/jit.o,
$(OBJS)
)
NON_ENTRY_OBJS
:=
$(
filter-out
src/jit.o,
$(OBJS)
)
...
...
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