Add a "make tags" option to the Makefile Signed-off-by: John Kacur <jkacur@xxxxxxxxxx> --- Makefile | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 3339556..c33a053 100644 --- a/Makefile +++ b/Makefile @@ -73,6 +73,7 @@ CLEANUP += $(if $(wildcard .git), ChangeLog) clean: for F in $(CLEANUP); do find -type f -name $$F | xargs rm -f; done rm -f hwlatdetect + rm -f tags .PHONY: distclean distclean: clean @@ -144,3 +145,7 @@ help: @echo " clean : remove object files" @echo " distclean : remove all generated files" @echo " help : print this message" + +.PHONY: tags +tags: + ctags -R --extra=+f --c-kinds=+p * -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html