[llvm-commits] CVS: llvm/Makefile.common

Chris Lattner lattner at cs.uiuc.edu
Thu Aug 14 22:04:01 PDT 2003


Changes in directory llvm:

Makefile.common updated: 1.112 -> 1.113

---
Log message:

Make sure to create the directory before we cram a .bc file into it


---
Diffs of the changes:

Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.112 llvm/Makefile.common:1.113
--- llvm/Makefile.common:1.112	Thu Aug 14 21:18:35 2003
+++ llvm/Makefile.common	Thu Aug 14 22:02:52 2003
@@ -48,6 +48,7 @@
 # For building,
 # 	LLVM, LLVM_SRC_ROOT = BUILD_SRC_ROOT, and
 # 	LLVM_OBJ_ROOT = BUILD_OBJ_ROOT.
+#
 #===-----------------------------------------------------------------------====
 
 #
@@ -537,7 +538,7 @@
 
 
 # Rule for building bytecode libraries.
-$(LIBNAME_BC): $(ObjectsBC) $(LibSubDirs)
+$(LIBNAME_BC): $(ObjectsBC) $(LibSubDirs) $(DESTLIBBYTECODE)/.dir
 	@echo ======= Linking $(LIBRARYNAME) bytecode library =======
 	$(VERB) $(LinkBCLib) -o $@ $(ObjectsBC) $(LibSubDirs) $(LibLinkOpts)
 #
@@ -660,7 +661,6 @@
 USED_LIB_PATHS_G := $(addprefix $(DESTLIBDEBUG)/, $(STATICUSEDLIBS))
 USED_LIB_PATHS_O := $(addprefix $(DESTLIBRELEASE)/, $(STATICUSEDLIBS))
 USED_LIB_PATHS_P := $(addprefix $(DESTLIBPROFILE)/, $(STATICUSEDLIBS))
-#LINK_OPTS        := $(TOOLLINKOPTS) $(PLATFORMLINKOPTS)
 
 #
 # Libtool link options:





More information about the llvm-commits mailing list