-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.MACOSX
89 lines (79 loc) · 2.31 KB
/
Makefile.MACOSX
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
88
89
# This file is part of libDAI - http://www.libdai.org/
#
# libDAI is licensed under the terms of the GNU General Public License version
# 2, or (at your option) any later version. libDAI is distributed without any
# warranty. See the file COPYING for more details.
#
# Copyright (C) 2009 Joris Mooij [joris dot mooij at libdai dot org]
# This template contains configurations for compiling libDAI under Mac OS X
#
# To use it, simply copy this file to 'Makefile.conf' and adapt 'Makefile.conf'
# to your local setup
#
# A boolean variable VAR can be set to true ("VAR=true") or to false ("VAR=")
# COMPILATION AND BUILD FLAGS
# Enable/disable various approximate inference methods
WITH_BP=true
WITH_FBP=true
WITH_MF=true
WITH_HAK=true
WITH_LC=true
WITH_TREEEP=true
WITH_JTREE=true
WITH_MR=true
WITH_GIBBS=true
WITH_CBP=true
# Build doxygen documentation?
WITH_DOC=true
# Build with debug info?
DEBUG=true
# Build matlab interface?
WITH_MATLAB=
# MatLab version 7.3 (R2006b) or newer?
NEW_MATLAB=true
# OPERATING SYSTEM
# Choose OS from {LINUX, WINDOWS, CYGWIN, MACOSX}
OS=MACOSX
# FILE EXTENSIONS
# Static library
LE=.a
# Object file
OE=.o
# Binary executable
EE=
# MatLab compiled MEX file
ME=.mexglx
# COMPILER
# Compile using GNU C++ Compiler
CC=g++
# Output filename option of the compiler
CCO=-o
# Flags for the C++ compiler
CCFLAGS=-Wno-deprecated -Wall -W -Wextra -fPIC -DMACOSX
# Flags to add in debugging mode (if DEBUG=true)
CCDEBUGFLAGS=-O3 -g -DDAI_DEBUG
# Flags to add in non-debugging mode (if DEBUG=false)
CCNODEBUGFLAGS=-O3
# Standard include directories
CCINC=-Iinclude -I/opt/local/include
# LINKER
# Standard libraries to include
LIBS=-ldai
# For linking with the BOOST Program Options library
BOOSTLIBS=-lboost_program_options-mt
# Additional library search paths for linker
CCLIB=-Llib -L/opt/local/lib
# MATLAB
# Replace the following by the directory where MatLab has been installed
MATLABDIR=/agbs/share/sw/matlab
# The following should resolve to the MatLab mex compile command
MEX=$(MATLABDIR)/bin/mex
# Specify the same C++ compiler and flags to mex
MEXFLAGS=CXX\#$(CC) CXXFLAGS\#'$(CCFLAGS)'
# SWIG PYTHON INTERFACE
# The following should resolve to the SWIG command
SWIG=swig
# Location of Python header files
INCLUDE_PYTHON=/usr/include/python2.5
# Location of Boost C++ library header files
INCLUDE_BOOST=/usr/include/boost