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
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 # (dynamic linking of Boost libraries seems not to work on Cygwin)
50 CCFLAGS=-O3 -Wno-deprecated -Wall -W -Wextra -DCYGWIN -static
51 # Flags to add in debugging mode (if DEBUG=true)
52 CCDEBUGFLAGS=-g -DDAI_DEBUG
53 # Standard include directories
54 CCINC=-Iinclude -I/usr/local/include/boost-1_37
57 # Standard libraries to include
59 # For linking with the BOOST Program Options library
60 BOOSTLIBS=-lboost_program_options-gcc34-mt
61 # Additional library search paths for linker
65 # Replace the following by the directory where MatLab has been installed
66 MATLABDIR=/agbs/share/sw/matlab
67 # The following should resolve to the MatLab mex compile command
68 MEX=$(MATLABDIR)/bin/mex
69 # Specify the same C++ compiler and flags to mex
70 MEXFLAGS=CXX\#$(CC) CXXFLAGS\#'$(CCFLAGS)'