diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-24 18:19:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-24 18:19:42 +0000 |
commit | b9df0c004a57f7abfd07e6babed62ddedfe1d1a3 (patch) | |
tree | 2a8bb9f4be11ba0d5fcd0b79a37c9acb968304fa | |
parent | f57c3cd1e86ea52b21256871cc93adb71c6ffe06 (diff) | |
download | bcm5719-llvm-b9df0c004a57f7abfd07e6babed62ddedfe1d1a3.tar.gz bcm5719-llvm-b9df0c004a57f7abfd07e6babed62ddedfe1d1a3.zip |
etags isn't portable at all. Make it not run by default. If you still
want it, just type 'make tags'
llvm-svn: 14368
-rw-r--r-- | llvm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/Makefile b/llvm/Makefile index fce18758af2..a61d7f3dde1 100644 --- a/llvm/Makefile +++ b/llvm/Makefile @@ -45,7 +45,7 @@ install:: install-includes TAGS: tags -all:: tags +all:: tags: find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h' | $(ETAGS) $(ETAGSFLAGS) - |