diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-30 09:19:36 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-30 09:19:36 +0000 |
commit | cc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca (patch) | |
tree | 0ce5dd37251c7723bad243a23d047058cb65afaa /tools | |
parent | f1bd4b4215a838c5ff0f3c68600d012d2cdebfa7 (diff) | |
download | external_llvm-cc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca.zip external_llvm-cc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca.tar.gz external_llvm-cc2d1e25f37d0d00c7f7f3ec562be61bc34e54ca.tar.bz2 |
Internalize variable names to prevent recursive assignment. Cleanup docs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17359 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llee/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tools/llee/Makefile b/tools/llee/Makefile index 6d0f033..8cbba3d 100644 --- a/tools/llee/Makefile +++ b/tools/llee/Makefile @@ -9,16 +9,17 @@ LEVEL = ../.. LIBRARYNAME = LLVMexecve SHARED_LIBRARY = 1 +DONT_BUILD_RELINKED = 1 include $(LEVEL)/Makefile.common all:: llee -llee: $(TOOLDIR)/llee +llee: $(ToolDir)/llee -$(TOOLDIR)/llee: Makefile - @$(ECHO) Constructing llee shell script - $(VERB) echo exec env LD_PRELOAD=$(LIBDIR)/libLLVMexecve$(SHLIBEXT) $$\* > $@ - $(VERB) chmod u+x $@ +$(ToolDir)/llee: Makefile + $(Echo) Constructing llee shell script + $(Verb) echo exec env LD_PRELOAD=$(LibDir)/libexecve$(SHLIBEXT) $$\* > $@ + $(Verb) chmod u+x $@ clean:: - $(VERB) rm -f $(TOOLDIR)/llee + $(Verb) rm -f $(ToolDir)/llee |