Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
a275f1c8
Commit
a275f1c8
authored
Jan 25, 2003
by
Kai Germaschewski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kbuild: Add cscope support to Makefile
We support tags and TAGS already, so... by Louis Zhuang
parent
d2fdc759
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
Makefile
Makefile
+8
-2
No files found.
Makefile
View file @
a275f1c8
...
...
@@ -190,7 +190,7 @@ depfile = $(subst $(comma),_,$(@D)/.$(@F).d)
noconfig_targets
:=
xconfig menuconfig config oldconfig randconfig
\
defconfig allyesconfig allnoconfig allmodconfig
\
clean mrproper distclean
\
help
tags TAGS sgmldocs psdocs pdfdocs htmldocs
\
help
tags TAGS
cscope
sgmldocs psdocs pdfdocs htmldocs
\
checkconfig checkhelp checkincludes
RCS_FIND_IGNORE
:=
\(
-name
SCCS
-o
-name
BitKeeper
-o
-name
.svn
-o
-name
CVS
\)
-prune
-o
...
...
@@ -693,7 +693,7 @@ MRPROPER_FILES += \
.menuconfig.log
\
include/asm
\
.hdepend include/linux/modversions.h
\
tags TAGS kernel.spec
\
tags TAGS
cscope
kernel.spec
\
.tmp
*
# Directories removed with 'make mrproper'
...
...
@@ -751,6 +751,9 @@ define all-sources
-name
'*.[chS]'
-print
)
endef
quiet_cmd_cscope
=
MAKE
$@
cmd_cscope
=
$
(
all-sources
)
| cscope
-k
-b
-i
-
quiet_cmd_TAGS
=
MAKE
$@
cmd_TAGS
=
$
(
all-sources
)
| etags -
...
...
@@ -763,6 +766,9 @@ define cmd_tags
$
(
all-sources
)
| xargs ctags
$$
CTAGSF
-a
endef
cscope
:
FORCE
$(
call
cmd,cscope
)
TAGS
:
FORCE
$(
call
cmd,TAGS
)
...
...
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