projects
/
pintos-anon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8af06d1
)
Add TAGS, tags targets.
author
Ben Pfaff
<blp@cs.stanford.edu>
Wed, 8 Sep 2004 00:58:15 +0000
(
00:58
+0000)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Wed, 8 Sep 2004 00:58:15 +0000
(
00:58
+0000)
src/Makefile
patch
|
blob
|
history
diff --git
a/src/Makefile
b/src/Makefile
index c47ac1297a07de2e78de38bd0112d92d19965acd..d6d325516d88f40805af8eb05aa190e4b194d62e 100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-10,3
+10,10
@@
clean::
distclean::
$(MAKE) clean
find . -name '*~' -exec rm '{}' \;
+
+TAGS::
+ etags --members `find . -name \*.[chS]`
+
+tags::
+ ctags -T `find . -name \*.[chS]`
+