diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-10-22 13:58:22 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-10-22 13:58:22 +0000 |
commit | 27dc7b6b9d9393a663a39272bdafd8aa4c01259d (patch) | |
tree | 56ba197cdf326c04daca3cf1e77e51a6762dad84 | |
parent | 0ac8f7ce5a1c3e21b518775f83ca5c14e56b9246 (diff) |
Simplify etags command.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.common | 2 | ||||
-rw-r--r-- | Makefile.rules | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index e56b668e52..3c29a37033 100644 --- a/Makefile.common +++ b/Makefile.common @@ -143,7 +143,7 @@ endif ifeq ($(LEVEL), .) tags: - etags -l c++ `find . -name '*.cpp'` `find . -name '*.h'` + etags -l c++ `find . -name '*.cpp' -o -name '*.h'` all:: tags diff --git a/Makefile.rules b/Makefile.rules index e56b668e52..3c29a37033 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -143,7 +143,7 @@ endif ifeq ($(LEVEL), .) tags: - etags -l c++ `find . -name '*.cpp'` `find . -name '*.h'` + etags -l c++ `find . -name '*.cpp' -o -name '*.h'` all:: tags |