summaryrefslogtreecommitdiff
path: root/projects/sample/Makefile.common.in
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-03-12 22:40:22 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-03-12 22:40:22 +0000
commit9802a6cbdc2ddcb445fc8620fd756654de6d85b4 (patch)
tree3aaa6a28cdc4233c55a7d8084796af305455cc21 /projects/sample/Makefile.common.in
parent1da4b5ba045bd9d4c9c3760ca53101042d157ce4 (diff)
downloadllvm-9802a6cbdc2ddcb445fc8620fd756654de6d85b4.tar.gz
llvm-9802a6cbdc2ddcb445fc8620fd756654de6d85b4.tar.bz2
llvm-9802a6cbdc2ddcb445fc8620fd756654de6d85b4.tar.xz
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
Diffstat (limited to 'projects/sample/Makefile.common.in')
-rw-r--r--projects/sample/Makefile.common.in26
1 files changed, 0 insertions, 26 deletions
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
-