mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 04:39:44 +00:00
Change tags rule to pipe output from find through etags command so that it
doesn't break on machines with limited command line lengths. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14138 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8a9a3706ff
commit
431c8767d9
2
Makefile
2
Makefile
@ -48,5 +48,5 @@ TAGS: tags
|
|||||||
all:: tags
|
all:: tags
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
$(ETAGS) $(ETAGSFLAGS) `find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h'`
|
find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h' | $(ETAGS) $(ETAGSFLAGS) -
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user