fix make install/uninstall of libcrtend.
authorChris Lattner <sabre@nondot.org>
Mon, 30 Jan 2006 02:03:56 +0000 (02:03 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 30 Jan 2006 02:03:56 +0000 (02:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25796 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/GCCLibraries/crtend/Makefile

index 129aff2d54e7b88444471811ee4e079994f3f8f0..285f4be6d50dff9bfe29bbc0916ced60a38f4a60 100644 (file)
@@ -59,8 +59,27 @@ SYMBOLHACKEDOBJS := $(ObjDir)/comp_main.bc $(ObjDir)/comp_genericeh.bc \
 
 all-local:: $(LibName.BCA)
 
+ifdef BYTECODE_DESTINATION
+BytecodeDestDir := $(BYTECODE_DESTINATION)
+else
+BytecodeDestDir := $(PROJ_libdir)
+endif
+
+DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).a
+install-bytecode-local:: $(DestBytecodeLib)
+install-local:: $(DestBytecodeLib)
+
 $(LibName.BCA): $(SYMBOLHACKEDOBJS) $(LibDir)/.dir $(LLVMToolDir)/llvm-ar
        $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
        $(Verb) $(RM) -f $@
        $(Verb) $(LArchive) $@ $(SYMBOLHACKEDOBJS)
 
+$(DestBytecodeLib): $(BytecodeDestDir) $(LibName.BCA) 
+       $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
+       $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
+
+uninstall-local::
+       $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
+       -$(Verb) $(RM) -f $(DestBytecodeLib)
+
+