[vmkit-commits] [vmkit] r180405 - Makefile.config is empty

Peter Senna Tschudin peter.senna at gmail.com
Thu Apr 25 10:08:00 PDT 2013


Author: peter.senna
Date: Thu Apr 25 12:06:30 2013
New Revision: 180405

URL: http://llvm.org/viewvc/llvm-project?rev=180405&view=rev
Log:
Makefile.config is empty
(cherry picked from commit a4246fac0364688bfa6cc5e2586b8d3669153a0c)

Modified:
    vmkit/trunk/Makefile.common.in
    vmkit/trunk/Makefile.config.in

Modified: vmkit/trunk/Makefile.common.in
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/Makefile.common.in?rev=180405&r1=180404&r2=180405&view=diff
==============================================================================
--- vmkit/trunk/Makefile.common.in (original)
+++ vmkit/trunk/Makefile.common.in Thu Apr 25 12:06:30 2013
@@ -1,3 +1,48 @@
+# Set the name of the project here
+PROJECT_NAME := @PACKAGE_NAME@
+PROJ_VERSION := @PACKAGE_VERSION@
+
+# Set the directory root of this project's source files
+PROJ_SRC_ROOT := $(subst //,/, at abs_top_srcdir@)
+VMKIT_SRC_ROOT := $(PROJ_SRC_ROOT)
+
+# Set the root directory of this project's object files
+PROJ_OBJ_ROOT := $(subst //,/, at abs_top_builddir@)
+VMKIT_OBJ_ROOT := $(PROJ_OBJ_ROOT)
+
+# Set the root directory of this project's install prefix
+PROJ_INSTALL_ROOT := @prefix@
+
+MMTK_PLAN = @MMTK_PLAN@
+MMTK_PLAN_HEADER = @MMTK_PLAN_HEADER@
+WITH_64 = @WITH_64@
+ANT = @ANT@
+JAVAC= @JAVAC@
+ZIP =@ZIP@
+
+CLASSPATH_IMPL = @classpathimpl@
+
+ifeq ($(CLASSPATH_IMPL),gnuclasspath)
+	CLASSPATH_DIR = GNUClasspath
+else
+	ifeq ($(CLASSPATH_IMPL),openjdk)
+		CLASSPATH_DIR = OpenJDK
+	else
+$(error Unsupported classpath implementation "$(CLASSPATH_IMPL)")
+	endif
+endif
+
+LLVM_CONFIG=@LLVM_CONFIG@
+
+SHOPT=@SHOPT@
+LDOPT=@LDOPT@
+EXEEXT=@EXEEXT@
+SHLIBEXT=@SHLIBEXT@
+
+OPTIMIZED=@OPTIMIZED@
+DEBUG=@DEBUG@
+ASSERT=@ASSERT@
+
  # Set this variable to the top of the LLVM source tree.
 LLVM_SRC_ROOT = @LLVM_SRC@
 

Modified: vmkit/trunk/Makefile.config.in
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/Makefile.config.in?rev=180405&r1=180404&r2=180405&view=diff
==============================================================================
--- vmkit/trunk/Makefile.config.in (original)
+++ vmkit/trunk/Makefile.config.in Thu Apr 25 12:06:30 2013
@@ -1,44 +0,0 @@
-# Set the name of the project here
-PROJECT_NAME := @PACKAGE_NAME@
-PROJ_VERSION := @PACKAGE_VERSION@
-
-# Set the directory root of this project's source files
-PROJ_SRC_ROOT := $(subst //,/, at abs_top_srcdir@)
-VMKIT_SRC_ROOT := $(PROJ_SRC_ROOT)
-
-# Set the root directory of this project's object files
-PROJ_OBJ_ROOT := $(subst //,/, at abs_top_builddir@)
-VMKIT_OBJ_ROOT := $(PROJ_OBJ_ROOT)
-
-# Set the root directory of this project's install prefix
-PROJ_INSTALL_ROOT := @prefix@
-
-MMTK_PLAN = @MMTK_PLAN@
-MMTK_PLAN_HEADER = @MMTK_PLAN_HEADER@
-WITH_64 = @WITH_64@
-ANT = @ANT@
-JAVAC= @JAVAC@
-ZIP =@ZIP@
-
-CLASSPATH_IMPL = @classpathimpl@
-
-ifeq ($(CLASSPATH_IMPL),gnuclasspath)
-	CLASSPATH_DIR = GNUClasspath
-else
-	ifeq ($(CLASSPATH_IMPL),openjdk)
-		CLASSPATH_DIR = OpenJDK
-	else
-$(error Unsupported classpath implementation "$(CLASSPATH_IMPL)")
-	endif
-endif
-
-LLVM_CONFIG=@LLVM_CONFIG@
-
-SHOPT=@SHOPT@
-LDOPT=@LDOPT@
-EXEEXT=@EXEEXT@
-SHLIBEXT=@SHLIBEXT@
-
-OPTIMIZED=@OPTIMIZED@
-DEBUG=@DEBUG@
-ASSERT=@ASSERT@





More information about the vmkit-commits mailing list