From 9802a6cbdc2ddcb445fc8620fd756654de6d85b4 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 12 Mar 2014 22:40:22 +0000 Subject: Remove projects/sample. As an example that was not actually being used, it suffered from a slow bitrot. The two main issues with it were that it had no cmake support and included a copy of the autoconf directory. The reality is that autoconf is not easily composable. The lack of composabilty is why we have clang options in llvm's configure. Suggesting that users include a copy of autoconf/ in their projects seems a bad idea. We are also in the process of switching to cmake, so pushing autoconf to new project is probably not what we want. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203728 91177308-0d34-0410-b5e6-96231b3b80d8 --- projects/sample/Makefile.common.in | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 projects/sample/Makefile.common.in (limited to 'projects/sample/Makefile.common.in') diff --git a/projects/sample/Makefile.common.in b/projects/sample/Makefile.common.in deleted file mode 100644 index 758423b895..0000000000 --- a/projects/sample/Makefile.common.in +++ /dev/null @@ -1,26 +0,0 @@ -# Set the name of the project here -PROJECT_NAME := sample -PROJ_VERSION := 0.9 - -# Set this variable to the top of the LLVM source tree. -LLVM_SRC_ROOT = @LLVM_SRC@ - -# Set this variable to the top level directory where LLVM was built -# (this is *not* the same as OBJ_ROOT as defined in LLVM's Makefile.config). -LLVM_OBJ_ROOT = @LLVM_OBJ@ - -# Set the directory root of this project's source files -PROJ_SRC_ROOT := $(subst //,/,@abs_top_srcdir@) - -# Set the root directory of this project's object files -PROJ_OBJ_ROOT := $(subst //,/,@abs_top_builddir@) - -# Set the root directory of this project's install prefix -PROJ_INSTALL_ROOT := @prefix@ - -# Configuration file to set paths specific to local installation of LLVM -include $(PROJ_OBJ_ROOT)/Makefile.llvm.config - -# Include all of the build rules used for making LLVM -include $(PROJ_SRC_ROOT)/Makefile.llvm.rules - -- cgit v1.2.3