You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 05:19:06 UTC

svn commit: r1131533 - /incubator/mesos/trunk/Makefile.in

Author: benh
Date: Sun Jun  5 03:19:06 2011
New Revision: 1131533

URL: http://svn.apache.org/viewvc?rev=1131533&view=rev
Log:
make etags; Now creates src/TAGS for all C/CPP code

Modified:
    incubator/mesos/trunk/Makefile.in

Modified: incubator/mesos/trunk/Makefile.in
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/Makefile.in?rev=1131533&r1=1131532&r2=1131533&view=diff
==============================================================================
--- incubator/mesos/trunk/Makefile.in (original)
+++ incubator/mesos/trunk/Makefile.in Sun Jun  5 03:19:06 2011
@@ -18,6 +18,9 @@ dist:
 
 all: src
 
+etags:
+	find src -name "*.cpp" -o -name "*.hpp" | grep -v "\~$$" | xargs etags -o src/TAGS
+
 clean:
 	$(MAKE) -C src clean