-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.ALL
31 lines (23 loc) · 1010 Bytes
/
Makefile.ALL
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
# This file is part of libDAI - http://www.libdai.org/
#
# Copyright (c) 2006-2011, The libDAI authors. All rights reserved.
#
# Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
# This file can be used to configure compile time options of libDAI.
# Here the user can enable or disable additional build targets (documentation, MatLab interface)
# and specify whether to build with debug information included.
#
# It is platform independent and is included by Makefile.
#
# A boolean variable VAR can be set to true ("VAR=true") or to false ("VAR=")
#
# Disabling/enabling inference algorithms in libDAI can be done in include/dai/dai_config.h
# COMPILATION AND BUILD FLAGS
# Build with debug info? (slower but safer)
DEBUG=true
# Build doxygen documentation? (doxygen and TeX need to be installed)
WITH_DOC=
# Build MatLab interface? (MatLab needs to be installed)
WITH_MATLAB=
# Build image segmentation example? (CImg needs to be installed)
WITH_CIMG=