1 #===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
10 # This file is included by Makefile.common. It defines paths and other
11 # values specific to a particular installation of LLVM.
13 #===------------------------------------------------------------------------===#
15 # Set the root directory of this polly's object files
16 POLLY_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
18 # Set this variable to the top level directory where LLVM was built
19 POLLY_OBJ_ROOT := $(subst //,/,@abs_top_builddir@)
21 # Set the root directory of this project's install prefix
22 PROJ_INSTALL_ROOT := @prefix@
26 POLLY_CXXFLAGS := "-fno-common -Woverloaded-virtual -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings"
29 # Do us work with scoplib?
30 OPENSCOP_FOUND := @openscop_found@
31 SCOPLIB_FOUND := @scoplib_found@
33 # Set include directroys
34 POLLY_INC := @gmp_inc@ @isl_inc@ \
35 @cloog_inc@ @openscop_inc@ @scoplib_inc@ \
36 -I$(POLLY_SRC_ROOT)/lib/JSON/include
38 POLLY_LD := @gmp_ld@ @isl_ld@ @cloog_ld@ @openscop_ld@ @scoplib_ld@ @scoplib_rpath@
40 POLLY_LIB := @gmp_lib@ @isl_lib@ @cloog_lib@ @openscop_lib@ @scoplib_lib@