1 # This template contains configurations for compiling libDAI under CygWin
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
19 # Build doxygen documentation?
21 # Build with debug info?
23 # Build matlab interface?
25 # MatLab version 7.3 (R2006b) or newer?
29 # Choose OS from {LINUX, WINDOWS, CYGWIN, MACOSX}
39 # MatLab compiled MEX file
43 # Compile using GNU C++ Compiler
45 # Output filename option of the compiler
47 # Flags for the C++ compiler
48 # (dynamic linking of Boost libraries seems not to work on Cygwin)
49 CCFLAGS=-O3 -Wno-deprecated -Wall -W -Wextra -DCYGWIN -static
50 # Flags to add in debugging mode (if DEBUG=true)
51 CCDEBUGFLAGS=-g -DDAI_DEBUG
52 # Standard include directories
53 CCINC=-Iinclude -I/usr/local/include/boost-1_37
56 # Standard libraries to include
58 # For linking with the BOOST Program Options library
59 BOOSTLIBS=-lboost_program_options-gcc34-mt
60 # Additional library search paths for linker
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)'