summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 451d7b4)
raw | patch | inline | side by side (parent: 451d7b4)
author | Fredrik Kuivinen <freku045@student.liu.se> | |
Sat, 18 Mar 2006 10:07:12 +0000 (11:07 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 18 Mar 2006 22:01:46 +0000 (14:01 -0800) |
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index 8a20c76e9edb692be3dc6a81b42d86469d55d329..8d45378b681587aee6c464915ec0bc0b0a8fb546 100644 (file)
--- a/Makefile
+++ b/Makefile
doc:
$(MAKE) -C Documentation all
+TAGS:
+ rm -f TAGS
+ find . -name '*.[hcS]' -print | xargs etags -a
+
+tags:
+ rm -f tags
+ find . -name '*.[hcS]' -print | xargs ctags -a
### Testing rules
clean:
rm -f *.o mozilla-sha1/*.o arm/*.o ppc/*.o compat/*.o $(LIB_FILE)
rm -f $(ALL_PROGRAMS) git$X
- rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h
+ rm -f *.spec *.pyc *.pyo */*.pyc */*.pyo common-cmds.h TAGS tags
rm -rf $(GIT_TARNAME)
rm -f $(GIT_TARNAME).tar.gz git-core_$(GIT_VERSION)-*.tar.gz
$(MAKE) -C Documentation/ clean
rm -f GIT-VERSION-FILE
.PHONY: all install clean strip
-.PHONY: .FORCE-GIT-VERSION-FILE
+.PHONY: .FORCE-GIT-VERSION-FILE TAGS tags