[PATCH] add tag target to generate ctags
Jamie Couture
jamie.couture at gmail.com
Mon Oct 8 19:12:17 CEST 2012
Signed-off-by: Jamie Couture <jamie.couture at gmail.com>
---
Makefile | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index eac24ad..1e34129 100644
--- a/Makefile
+++ b/Makefile
@@ -73,6 +73,7 @@ ifndef V
QUIET_SUBDIR0 = + at subdir=
QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
$(MAKE) $(PRINT_DIR) -C $$subdir
+ QUIET_TAGS = @echo ' ' TAGS $@;
endif
#
@@ -124,7 +125,7 @@ endif
.PHONY: all libgit test install uninstall clean force-version get-git \
doc clean-doc install-doc install-man install-html install-pdf \
- uninstall-doc uninstall-man uninstall-html uninstall-pdf
+ uninstall-doc uninstall-man uninstall-html uninstall-pdf tags
all: cgit
@@ -242,3 +243,6 @@ clean-doc:
get-git:
curl $(GIT_URL) | tar -xjf - && rm -rf git && mv git-$(GIT_VER) git
+
+tags:
+ $(QUIET_TAGS)find . -name '*.[ch]' | xargs ctags
--
1.7.11.4
More information about the CGit
mailing list