1 # This file is part of libDAI - http://www.libdai.org/
3 # libDAI is licensed under the terms of the GNU General Public License version
4 # 2, or (at your option) any later version. libDAI is distributed without any
5 # warranty. See the file COPYING for more details.
7 # Copyright (C) 2009 Joris Mooij [joris dot mooij at libdai dot org]
10 # This template contains configurations for compiling libDAI under Mac OS X
12 # To use it, simply copy this file to 'Makefile.conf' and adapt 'Makefile.conf'
15 # A boolean variable VAR can be set to true ("VAR=true") or to false ("VAR=")
18 # COMPILATION AND BUILD FLAGS
19 # Enable/disable various approximate inference methods
30 # Build doxygen documentation?
32 # Build with debug info?
34 # Build matlab interface?
36 # MatLab version 7.3 (R2006b) or newer?
40 # Choose OS from {LINUX, WINDOWS, CYGWIN, MACOSX}
50 # MatLab compiled MEX file
54 # Compile using GNU C++ Compiler
56 # Output filename option of the compiler
58 # Flags for the C++ compiler
59 CCFLAGS=-Wno-deprecated -Wall -W -Wextra -fPIC -DMACOSX
60 # Flags to add in debugging mode (if DEBUG=true)
61 CCDEBUGFLAGS=-O3 -g -DDAI_DEBUG
62 # Flags to add in non-debugging mode (if DEBUG=false)
64 # Standard include directories
65 CCINC=-Iinclude -I/opt/local/include
68 # Standard libraries to include
70 # For linking with the BOOST Program Options library
71 BOOSTLIBS=-lboost_program_options-mt
72 # Additional library search paths for linker
73 CCLIB=-Llib -L/opt/local/lib
76 # Replace the following by the directory where MatLab has been installed
77 MATLABDIR=/agbs/share/sw/matlab
78 # The following should resolve to the MatLab mex compile command
79 MEX=$(MATLABDIR)/bin/mex
80 # Specify the same C++ compiler and flags to mex
81 MEXFLAGS=CXX\#$(CC) CXXFLAGS\#'$(CCFLAGS)'
83 # SWIG PYTHON INTERFACE
84 # The following should resolve to the SWIG command
86 # Location of Python header files
87 INCLUDE_PYTHON=/usr/include/python2.5
88 # Location of Boost C++ library header files
89 INCLUDE_BOOST=/usr/include/boost