summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-02-12 02:25:47 +0000
committerMike Stump <mrs@apple.com>2009-02-12 02:25:47 +0000
commit8ba82b36683ace169ca83501e6c04348dce1474d (patch)
tree082ef69550e34f7011299bbecb43ee897c92ea8a /Makefile
parent05e7c6d29c65c43245c49cdbde10dba8270fa204 (diff)
Add tags; this is documented to work, just need the wiring to enable it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64350 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 67cc282031..72bfaa78e6 100644
--- a/Makefile
+++ b/Makefile
@@ -20,4 +20,7 @@ report::
clean::
@ $(MAKE) -C test clean
+tags::
+ $(Verb) etags `find . -type f -name \*.h | grep -v /lib/Headers | grep -v /test/` `find . -type f -name \*.cpp | grep -v /lib/Headers | grep -v /test/`
+
.PHONY: test report clean