1 # This file is part of libDAI - http://www.libdai.org/
3 # libDAI is licensed under the terms of the GNU General Public License version
4 # 2, or (at your option) any later version. libDAI is distributed without any
5 # warranty. See the file COPYING for more details.
7 # Copyright (C) 2006-2010 Joris Mooij [joris dot mooij at libdai dot org]
8 # Copyright (C) 2006-2007 Radboud University Nijmegen, The Netherlands
11 # Load the platform independent build configuration file
14 # Load the local configuration from Makefile.conf
17 # Set version and date
18 DAI_VERSION
="git HEAD"
19 DAI_DATE
="May 12, 2010, or later"
21 # Directories of libDAI sources
22 # Location of libDAI headers
24 # Location of libDAI source files
26 # Destination directory of libDAI library
29 # Set final compiler flags
31 CCFLAGS
:=$(CCFLAGS
) $(CCDEBUGFLAGS
)
33 CCFLAGS
:=$(CCFLAGS
) $(CCNODEBUGFLAGS
)
36 # Define build targets
37 TARGETS
:=lib tests utils examples
39 TARGETS
:=$(TARGETS
) matlabs
41 TARGETS
:=$(TARGETS
) unittests testregression testem
43 TARGETS
:=$(TARGETS
) doc
46 # Define conditional build targets
47 NAMES
:=graph dag bipgraph varset daialg alldai clustergraph factor factorgraph properties regiongraph util weightedgraph exceptions exactinf evidence emalg
49 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_BP
53 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_FBP
57 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_TRWBP
61 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_MF
65 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_HAK
69 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_LC
73 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_TREEEP
74 NAMES
:=$(NAMES
) treeep
77 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_JTREE
81 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_MR
85 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_GIBBS
89 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_CBP
90 NAMES
:=$(NAMES
) bbp cbp bp_dual
93 WITHFLAGS
:=$(WITHFLAGS
) -DDAI_WITH_DECMAP
94 NAMES
:=$(NAMES
) decmap
97 # Define standard libDAI header dependencies, source file names and object file names
98 HEADERS
=$(foreach name
,graph dag bipgraph index var factor varset smallset prob daialg properties alldai enum exceptions util
,$(INC
)/$(name
).h
)
99 SOURCES
:=$(foreach name
,$(NAMES
),$(SRC
)/$(name
).
cpp)
100 OBJECTS
:=$(foreach name
,$(NAMES
),$(name
)$(OE
))
102 # Setup final command for C++ compiler
103 ifneq ($(OS
),WINDOWS
)
104 CC
:=$(CC
) $(CCINC
) $(CCFLAGS
) $(WITHFLAGS
) $(CCLIB
)
106 CC
:=$(CC
) $(CCINC
) $(CCFLAGS
) $(WITHFLAGS
)
107 LIBS
:=$(LIBS
) $(CCLIB
)
110 # Setup final command for MEX
112 MEXFLAGS
:=$(MEXFLAGS
) -largeArrayDims
114 MEXFLAGS
:=$(MEXFLAGS
) -DSMALLMEM
116 MEX
:=$(MEX
) $(MEXINC
) $(MEXFLAGS
) $(WITHFLAGS
) $(MEXLIB
)
123 @echo libDAI built successfully
!
125 examples
: examples
/example
$(EE
) examples
/example_bipgraph
$(EE
) examples
/example_varset
$(EE
) examples
/example_permute
$(EE
) examples
/example_sprinkler
$(EE
) examples
/example_sprinkler_gibbs
$(EE
) examples
/example_sprinkler_em
$(EE
) examples
/example_imagesegmentation
$(EE
)
127 matlabs
: matlab
/dai
$(ME
) matlab
/dai_readfg
$(ME
) matlab
/dai_writefg
$(ME
) matlab
/dai_potstrength
$(ME
)
129 unittests
: tests
/unit
/var_test
$(EE
) tests
/unit
/smallset_test
$(EE
) tests
/unit
/varset_test
$(EE
) tests
/unit
/graph_test
$(EE
) tests
/unit
/dag_test
$(EE
) tests
/unit
/bipgraph_test
$(EE
) tests
/unit
/weightedgraph_test
$(EE
) tests
/unit
/enum_test
$(EE
) tests
/unit
/enum_test
$(EE
) tests
/unit
/util_test
$(EE
) tests
/unit
/exceptions_test
$(EE
) tests
/unit
/properties_test
$(EE
) tests
/unit
/index_test
$(EE
) tests
/unit
/prob_test
$(EE
) tests
/unit
/factor_test
$(EE
) tests
/unit
/factorgraph_test
$(EE
) tests
/unit
/clustergraph_test
$(EE
) tests
/unit
/regiongraph_test
$(EE
) tests
/unit
/daialg_test
$(EE
) tests
/unit
/alldai_test
$(EE
)
130 echo Running unit tests...
131 tests
/unit
/var_test
$(EE
)
132 tests
/unit
/smallset_test
$(EE
)
133 tests
/unit
/varset_test
$(EE
)
134 tests
/unit
/graph_test
$(EE
)
135 tests
/unit
/dag_test
$(EE
)
136 tests
/unit
/bipgraph_test
$(EE
)
137 tests
/unit
/weightedgraph_test
$(EE
)
138 tests
/unit
/enum_test
$(EE
)
139 tests
/unit
/util_test
$(EE
)
140 tests
/unit
/exceptions_test
$(EE
)
141 tests
/unit
/properties_test
$(EE
)
142 tests
/unit
/index_test
$(EE
)
143 tests
/unit
/prob_test
$(EE
)
144 tests
/unit
/factor_test
$(EE
)
145 tests
/unit
/factorgraph_test
$(EE
)
146 tests
/unit
/clustergraph_test
$(EE
)
147 tests
/unit
/regiongraph_test
$(EE
)
148 tests
/unit
/daialg_test
$(EE
)
149 tests
/unit
/alldai_test
$(EE
)
151 tests
: tests
/testdai
$(EE
) tests
/testem
/testem
$(EE
) tests
/testbbp
$(EE
) $(unittests
)
153 utils
: utils
/createfg
$(EE
) utils
/fg2dot
$(EE
) utils
/fginfo
$(EE
) utils
/uai2fg
$(EE
)
155 lib
: $(LIB
)/libdai
$(LE
)
161 %$(OE
) : $(SRC
)/%.
cpp $(INC
)/%.h
$(HEADERS
)
164 bbp
$(OE
) : $(SRC
)/bbp.
cpp $(INC
)/bbp.h
$(INC
)/bp_dual.h
$(HEADERS
)
167 cbp
$(OE
) : $(SRC
)/cbp.
cpp $(INC
)/cbp.h
$(INC
)/bbp.h
$(INC
)/bp_dual.h
$(HEADERS
)
170 hak
$(OE
) : $(SRC
)/hak.
cpp $(INC
)/hak.h
$(HEADERS
) $(INC
)/regiongraph.h
173 jtree
$(OE
) : $(SRC
)/jtree.
cpp $(INC
)/jtree.h
$(HEADERS
) $(INC
)/weightedgraph.h
$(INC
)/clustergraph.h
$(INC
)/regiongraph.h
176 treeep
$(OE
) : $(SRC
)/treeep.
cpp $(INC
)/treeep.h
$(HEADERS
) $(INC
)/weightedgraph.h
$(INC
)/clustergraph.h
$(INC
)/regiongraph.h
$(INC
)/jtree.h
179 emalg
$(OE
) : $(SRC
)/emalg.
cpp $(INC
)/emalg.h
$(INC
)/evidence.h
$(HEADERS
)
182 decmap
$(OE
) : $(SRC
)/decmap.
cpp $(INC
)/decmap.h
$(HEADERS
)
189 examples
/%$(EE
) : examples
/%.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
190 $(CC
) $(CCO
)$@
$< $(LIBS
)
192 examples
/example_sprinkler_gibbs
$(EE
) : examples
/example_sprinkler_gibbs.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
194 $(CC
) $(CCO
)$@
$< $(LIBS
)
199 examples
/example_imagesegmentation
$(EE
) : examples
/example_imagesegmentation.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
200 -$(CC
) $(CIMGINC
) $(CCO
)$@
$< $(LIBS
) $(CIMGLIBS
)
206 tests
/unit
/%$(EE
) : tests
/unit
/%.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
207 ifneq ($(OS
),WINDOWS
)
208 $(CC
) -DBOOST_TEST_DYN_LINK
$(CCO
)$@
$< $(LIBS
) $(BOOSTLIBS_UTF
)
210 $(CC
) $(CCO
)$@
$< $(LIBS
) $(BOOSTLIBS_UTF
) /SUBSYSTEM
:CONSOLE
217 tests
/testdai
$(EE
) : tests
/testdai.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
218 $(CC
) $(CCO
)$@
$< $(LIBS
) $(BOOSTLIBS_PO
)
219 tests
/testem
/testem
$(EE
) : tests
/testem
/testem.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
220 $(CC
) $(CCO
)$@
$< $(LIBS
) $(BOOSTLIBS_PO
)
221 tests
/testbbp
$(EE
) : tests
/testbbp.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
223 $(CC
) $(CCO
)$@
$< $(LIBS
)
232 matlab
/dai
$(ME
) : $(SRC
)/matlab
/dai.
cpp $(HEADERS
) $(SOURCES
) $(SRC
)/matlab
/matlab.
cpp
233 $(MEX
) -output
$@
$< $(SRC
)/matlab
/matlab.
cpp $(SOURCES
)
235 matlab
/dai_readfg
$(ME
) : $(SRC
)/matlab
/dai_readfg.
cpp $(HEADERS
) $(SRC
)/matlab
/matlab.
cpp $(SRC
)/factorgraph.
cpp $(SRC
)/exceptions.
cpp $(SRC
)/bipgraph.
cpp $(SRC
)/graph.
cpp $(SRC
)/factor.
cpp $(SRC
)/util.
cpp
236 $(MEX
) -output
$@
$< $(SRC
)/matlab
/matlab.
cpp $(SRC
)/factorgraph.
cpp $(SRC
)/exceptions.
cpp $(SRC
)/bipgraph.
cpp $(SRC
)/graph.
cpp $(SRC
)/factor.
cpp $(SRC
)/util.
cpp
238 matlab
/dai_writefg
$(ME
) : $(SRC
)/matlab
/dai_writefg.
cpp $(HEADERS
) $(SRC
)/matlab
/matlab.
cpp $(SRC
)/factorgraph.
cpp $(SRC
)/exceptions.
cpp $(SRC
)/bipgraph.
cpp $(SRC
)/graph.
cpp $(SRC
)/factor.
cpp $(SRC
)/util.
cpp
239 $(MEX
) -output
$@
$< $(SRC
)/matlab
/matlab.
cpp $(SRC
)/factorgraph.
cpp $(SRC
)/exceptions.
cpp $(SRC
)/bipgraph.
cpp $(SRC
)/graph.
cpp $(SRC
)/factor.
cpp $(SRC
)/util.
cpp
241 matlab
/dai_potstrength
$(ME
) : $(SRC
)/matlab
/dai_potstrength.
cpp $(HEADERS
) $(SRC
)/matlab
/matlab.
cpp $(SRC
)/exceptions.
cpp
242 $(MEX
) -output
$@
$< $(SRC
)/matlab
/matlab.
cpp $(SRC
)/exceptions.
cpp
248 utils
/createfg
$(EE
) : utils
/createfg.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
249 $(CC
) $(CCO
)$@
$< $(LIBS
) $(BOOSTLIBS_PO
)
251 utils
/fg2dot
$(EE
) : utils
/fg2dot.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
252 $(CC
) $(CCO
)$@
$< $(LIBS
)
254 utils
/fginfo
$(EE
) : utils
/fginfo.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
255 $(CC
) $(CCO
)$@
$< $(LIBS
)
257 utils
/uai2fg
$(EE
) : utils
/uai2fg.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
258 $(CC
) $(CCO
)$@
$< $(LIBS
)
264 ifneq ($(OS
),WINDOWS
)
265 $(LIB
)/libdai
$(LE
) : $(OBJECTS
)
267 ar rcus
$(LIB
)/libdai
$(LE
) $(OBJECTS
)
269 $(LIB
)/libdai
$(LE
) : $(OBJECTS
)
271 lib
/out
:$(LIB
)/libdai
$(LE
) $(OBJECTS
)
278 testregression
: tests
/testdai
$(EE
)
279 @echo Starting regression
test...this can take a minute or so
!
280 ifneq ($(OS
),WINDOWS
)
281 cd tests
&& .
/testregression
&& cd ..
283 cd tests
&& testregression.bat
&& cd ..
286 testem
: tests
/testem
/testem
$(EE
)
287 @echo Starting EM tests
288 ifneq ($(OS
),WINDOWS
)
289 cd tests
/testem
&& .
/runtests
&& cd ..
/..
291 cd tests
\testem
&& runtests
&& cd ..\..
298 doc
: $(INC
)/*.h
$(SRC
)/*.
cpp examples
/*.
cpp doxygen.conf
301 README
: doc scripts
/makeREADME
302 DAI_VERSION
=$(DAI_VERSION
) DAI_DATE
=$(DAI_DATE
) scripts
/makeREADME
305 etags src
/*.
cpp include/dai
/*.h tests
/*.
cpp utils
/*.
cpp
306 ctags src
/*.
cpp include/dai
/*.h tests
/*.
cpp utils
/*.
cpp
313 ifneq ($(OS
),WINDOWS
)
317 -rm examples
/example
$(EE
) examples
/example_bipgraph
$(EE
) examples
/example_varset
$(EE
) examples
/example_permute
$(EE
) examples
/example_sprinkler
$(EE
) examples
/example_sprinkler_gibbs
$(EE
) examples
/example_sprinkler_em
$(EE
) examples
/example_imagesegmentation
$(EE
)
318 -rm tests
/testdai
$(EE
) tests
/testem
/testem
$(EE
) tests
/testbbp
$(EE
)
319 -rm tests
/unit
/var_test
$(EE
) tests
/unit
/smallset_test
$(EE
) tests
/unit
/varset_test
$(EE
) tests
/unit
/graph_test
$(EE
) tests
/unit
/dag_test
$(EE
) tests
/unit
/bipgraph_test
$(EE
) tests
/unit
/weightedgraph_test
$(EE
) tests
/unit
/enum_test
$(EE
) tests
/unit
/util_test
$(EE
) tests
/unit
/exceptions_test
$(EE
) tests
/unit
/properties_test
$(EE
) tests
/unit
/index_test
$(EE
) tests
/unit
/prob_test
$(EE
) tests
/unit
/factor_test
$(EE
) tests
/unit
/factorgraph_test
$(EE
) tests
/unit
/clustergraph_test
$(EE
) tests
/unit
/regiongraph_test
$(EE
) tests
/unit
/daialg_test
$(EE
) tests
/unit
/alldai_test
$(EE
)
320 -rm factorgraph_test.fg alldai_test.aliases
321 -rm utils
/fg2dot
$(EE
) utils
/createfg
$(EE
) utils
/fginfo
$(EE
) utils
/uai2fg
$(EE
)
331 -del examples\
*$(EE
).manifest
335 -del tests\
*$(EE
).manifest
338 -del tests
\testem\
*$(EE
)
339 -del tests
\testem\
*$(EE
).manifest
340 -del tests
\testem\
*.pdb
341 -del tests
\testem\
*.ilk
343 -del utils\
*$(EE
).manifest
346 -del tests\unit\
*_test
$(EE
)
347 -del tests\unit\
*_test
$(EE
).manifest
348 -del tests\unit\
*_test.pdb
349 -del tests\unit\
*_test.ilk
350 -del factorgraph_test.fg
351 -del alldai_test.aliases
352 -del
$(LIB
)\libdai
$(LE
)