diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2011-04-29 06:27:02 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2011-04-29 06:27:02 +0000 |
commit | 758053788bde4747953f5f276ded345cd01323b1 (patch) | |
tree | 02f38df95a5327cb8644906d148b5bd8facf63f9 /polly/Makefile.common.in | |
parent | 011eae75123217b9125270ae08132a308cee7061 (diff) | |
download | llvm-758053788bde4747953f5f276ded345cd01323b1.zip llvm-758053788bde4747953f5f276ded345cd01323b1.tar.gz llvm-758053788bde4747953f5f276ded345cd01323b1.tar.bz2 |
Add initial version of Polly
This version is equivalent to commit ba26ebece8f5be84e9bd6315611d412af797147e
in the old git repository.
llvm-svn: 130476
Diffstat (limited to 'polly/Makefile.common.in')
-rwxr-xr-x | polly/Makefile.common.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/polly/Makefile.common.in b/polly/Makefile.common.in new file mode 100755 index 0000000..8a5b945 --- /dev/null +++ b/polly/Makefile.common.in @@ -0,0 +1,34 @@ +#===-- Makefile.common - Common make rules for Polly -------*- Makefile -*--===# +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +#===------------------------------------------------------------------------===# +# +# Configuration file to set paths specific to local installation of LLVM +# +PROJECT_NAME := polly +PROJ_VERSION := 0.9 +# Set this variable to the top of the LLVM source tree. +LLVM_SRC_ROOT = @LLVM_SRC@ + +# Set the name of the project here + +# (this is *not* the same as OBJ_ROOT as defined in LLVM's Makefile.config). +LLVM_OBJ_ROOT = @LLVM_OBJ@ + +PROJ_SRC_ROOT := $(subst //,/,@abs_top_srcdir@) + +# Set the root directory of this project's object files +PROJ_OBJ_ROOT := $(subst //,/,@abs_top_builddir@) + +ifndef LLVM_OBJ_ROOT +include $(LEVEL)/Makefile.config +else +include $(PROJ_OBJ_ROOT)/Makefile.config +endif + +# Include LLVM's Master Makefile. +include $(LLVM_SRC_ROOT)/Makefile.common |