1 # This template contains configurations for compiling libDAI under Mac OS X
3 # To use it, simply copy this file to 'Makefile.conf' and adapt 'Makefile.conf'
6 # A boolean variable VAR can be set to true ("VAR=true") or to false ("VAR=")
8 # COMPILATION AND BUILD FLAGS
9 # Enable/disable various approximate inference methods
20 # Build doxygen documentation?
22 # Build with debug info?
24 # Build matlab interface?
26 # New/old matlab version?
30 # Choose OS from {LINUX, WINDOWS, CYGWIN, MACOSX}
40 # MatLab compiled MEX file
44 # Compile using GNU C++ Compiler
46 # Output filename option of the compiler
48 # Flags for the C++ compiler
49 CCFLAGS=-O3 -Wno-deprecated -Wall -W -Wextra -fpic
50 # Flags to add in debugging mode (if DEBUG=true)
51 CCDEBUGFLAGS=-g -DDAI_DEBUG
52 # Standard include directories
53 CCINC=-Iinclude -I/opt/local/include
56 # Standard libraries to include
58 # For linking with the BOOST Program Options library
59 BOOSTLIBS=-lboost_program_options-mt
60 # Additional library search paths for linker
61 CCLIB=-Llib -L/opt/local/lib
64 # Replace the following by the directory where MatLab has been installed
65 MATLABDIR=/agbs/share/sw/matlab
66 # The following should resolve to the MatLab mex compile command
67 MEX=$(MATLABDIR)/bin/mex
68 # Specify the same C++ compiler and flags to mex
69 MEXFLAGS=CXX\#$(CC) CXXFLAGS\#'$(CCFLAGS)'