mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 13:55:37 +01:00
Allow alternative ctags versions in Makefile
Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
parent
a151d5b8d1
commit
6c2908ea5f
4
Makefile
4
Makefile
@ -123,8 +123,10 @@ endif
|
|||||||
|
|
||||||
## Editor navigation files
|
## Editor navigation files
|
||||||
C_SOURCE_FILES = $(wildcard include/*/*.h library/*.[hc] programs/*/*.[hc] tests/suites/*.function)
|
C_SOURCE_FILES = $(wildcard include/*/*.h library/*.[hc] programs/*/*.[hc] tests/suites/*.function)
|
||||||
|
# Exuberant-ctags invocation. Other ctags implementations may require different options.
|
||||||
|
CTAGS = ctags --langmap=c:+.h.function -o
|
||||||
tags: $(C_SOURCE_FILES)
|
tags: $(C_SOURCE_FILES)
|
||||||
ctags -o $@ --langmap=c:+.h.function $(C_SOURCE_FILES)
|
$(CTAGS) $@ $(C_SOURCE_FILES)
|
||||||
TAGS: $(C_SOURCE_FILES)
|
TAGS: $(C_SOURCE_FILES)
|
||||||
etags -o $@ $(C_SOURCE_FILES)
|
etags -o $@ $(C_SOURCE_FILES)
|
||||||
GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES)
|
GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES)
|
||||||
|
Loading…
Reference in New Issue
Block a user