Home | History | Annotate | Download | only in llvm-lit
      1 ##===- utils/llvm-lit/Makefile -----------------------------*- Makefile -*-===##
      2 # 
      3 #                     The LLVM Compiler Infrastructure
      4 #
      5 # This file is distributed under the University of Illinois Open Source
      6 # License. See LICENSE.TXT for details.
      7 # 
      8 ##===----------------------------------------------------------------------===##
      9 
     10 LEVEL = ../..
     11 
     12 include $(LEVEL)/Makefile.common
     13 
     14 all:: $(ToolDir)/llvm-lit
     15 
     16 $(ToolDir)/llvm-lit: llvm-lit.in Makefile $(ToolDir)/.dir
     17 	$(Echo) "Creating 'llvm-lit' script..."
     18 	$(Verb)$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tmp
     19 	$(Verb)$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> lit.tmp
     20 	$(Verb)sed -f lit.tmp $< > $@
     21 	$(Verb)chmod +x $@
     22 	$(Verb)rm -f lit.tmp
     23