1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
# -------------------------------------------------------------------
# MAdLib - Copyright (C) 2008-2009 Universite catholique de Louvain
#
# See the Copyright.txt and License.txt files for license information.
# You should have received a copy of these files along with MAdLib.
# If not, see <http://www.madlib.be/license/>
#
# Please report all bugs and problems to <contrib@madlib.be>
#
# Authors: Gaetan Compere, Jean-Francois Remacle
# -------------------------------------------------------------------
# OS and host
UNAME=@UNAME@
HOSTNAME=@HOSTNAME@
# The names of the C and C++ compilers
CC=@CC@
CXX=@CXX@
# If you need to link to dynamic libraries installed in non-standard
# locations and are using the GNU linker, you may want to add
# '-Wl,--rpath,/path/to/dynamic/library' to the 'LINKER' variable
# below. Alternatively, you could edit the 'LD_LIBARY_PATH'
# environement variable or use the 'ldconfig' program.
LINKER=@LINKER@
# All compiler flags except optimization flags
FLAGS=@FLAGS@
# Flag for c++ compiler
CXXFLAGS=@CXXFLAGS@
# Additional system includes
SYSINCLUDE=
# Compiler optimization flags
OPTIM=@OPTIM@
# MAdLib definitions
MAdLib_DEFS=@MAdLib_DEFS@
# MAdLib subdirectories
MAdLib_DIRS=@MAdLib_DIRS@
# MAdLib libraries
MAdLib_LIBS=@MAdLib_LIBS@
# MAdLib include directories
MAdLib_INCLUDES=@MAdLib_INCLUDES@
# MAdLib benchmarks subdirectories
#MAdLib_BENCHDIRS=@MAdLib_BENCHDIRS@
# How you create a static library on this machine
AR=@AR@
ARFLAGS=
RANLIB=@RANLIB@
# The symbol used in front of compiler flags
DASH=-
# The extension to use for object files, libraries and executables
OBJEXT=.o
LIBEXT=@LIBEXT@
EXEEXT=@EXEEXT@
# File handling commands
RM=@RM@
# Documentation genration
DOXYGEN=@DOXYGEN@
# Installation directories
prefix=@prefix@
srcdir=@srcdir@
top_srcdir=@top_srcdir@
ac_top_srcdir=@ac_top_srcdir@
exec_prefix=@exec_prefix@
bindir=@bindir@
datadir=@datadir@
datarootdir=@datarootdir@
includedir=@includedir@
libdir=@libdir@
docdir=@docdir@
mandir=@mandir@
infodir=@infodir@
|