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-2009 Joris Mooij [joris dot mooij at libdai dot org]
8 # Copyright (C) 2006-2007 Radboud University Nijmegen, The Netherlands
11 # Load the local configuration from Makefile.conf
14 # Set version and date
15 DAI_VERSION
="git HEAD"
16 DAI_DATE
="November 16, 2009 - or later"
18 # Directories of libDAI sources
19 # Location libDAI headers
21 # Location of libDAI source files
23 # Destination directory of libDAI library
26 # Set final compiler flags
28 CCFLAGS
:=$(CCFLAGS
) $(CCDEBUGFLAGS
)
30 CCFLAGS
:=$(CCFLAGS
) $(CCNODEBUGFLAGS
)
33 # Define build targets
34 TARGETS
=tests utils lib examples testregression testem
36 TARGETS
:=$(TARGETS
) doc
39 TARGETS
:=$(TARGETS
) matlabs
40 # Specify the same C++ compiler and flags to mex
42 MEXFLAGS
=CXX\
#$(CC) CXXFLAGS\#'$(CCFLAGS)'
44 MEXFLAGS
=CXX\
#$(CC) CXXFLAGS\#"$(CCFLAGS)"
47 MEXFLAGS
:=$(MEXFLAGS
) -largeArrayDims
49 MEXFLAGS
:=$(MEXFLAGS
) -DSMALLMEM
53 # Define conditional build targets
54 OBJECTS
:=exactinf
$(OE
) evidence
$(OE
) emalg
$(OE
)
56 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_BP
57 OBJECTS
:=$(OBJECTS
) bp
$(OE
)
60 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_MF
61 OBJECTS
:=$(OBJECTS
) mf
$(OE
)
64 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_HAK
65 OBJECTS
:=$(OBJECTS
) hak
$(OE
)
68 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_LC
69 OBJECTS
:=$(OBJECTS
) lc
$(OE
)
72 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_TREEEP
73 OBJECTS
:=$(OBJECTS
) treeep
$(OE
)
76 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_JTREE
77 OBJECTS
:=$(OBJECTS
) jtree
$(OE
)
80 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_MR
81 OBJECTS
:=$(OBJECTS
) mr
$(OE
)
84 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_GIBBS
85 OBJECTS
:=$(OBJECTS
) gibbs
$(OE
)
88 CCFLAGS
:=$(CCFLAGS
) -DDAI_WITH_CBP
89 OBJECTS
:=$(OBJECTS
) bbp
$(OE
) cbp
$(OE
) bp_dual
$(OE
)
92 # Define standard libDAI header dependencies
93 HEADERS
=$(INC
)/bipgraph.h
$(INC
)/index.h
$(INC
)/var.h
$(INC
)/factor.h
$(INC
)/varset.h
$(INC
)/smallset.h
$(INC
)/prob.h
$(INC
)/daialg.h
$(INC
)/properties.h
$(INC
)/alldai.h
$(INC
)/enum.h
$(INC
)/exceptions.h
$(INC
)/util.h
95 # Setup final command for C++ compiler and MEX
97 CC
:=$(CC
) $(CCINC
) $(CCFLAGS
) $(CCLIB
)
99 CC
:=$(CC
) $(CCINC
) $(CCFLAGS
)
100 LIBS
:=$(LIBS
) $(CCLIB
)
102 MEX
:=$(MEX
) $(CCLIB
) $(CCINC
) $(MEXFLAGS
)
110 examples
: examples
/example
$(EE
) examples
/example_bipgraph
$(EE
) examples
/example_varset
$(EE
) examples
/example_permute
$(EE
) examples
/example_sprinkler
$(EE
)
112 matlabs
: matlab
/dai
$(ME
) matlab
/dai_readfg
$(ME
) matlab
/dai_writefg
$(ME
) matlab
/dai_potstrength
$(ME
)
114 tests
: tests
/testdai
$(EE
) tests
/testem
/testem
$(EE
) tests
/testbbp
$(EE
)
116 utils
: utils
/createfg
$(EE
) utils
/fg2dot
$(EE
) utils
/fginfo
$(EE
)
118 lib
: $(LIB
)/libdai
$(LE
)
124 bipgraph
$(OE
) : $(SRC
)/bipgraph.
cpp $(HEADERS
)
125 $(CC
) -c
$(SRC
)/bipgraph.
cpp
127 varset
$(OE
) : $(SRC
/varset.
cpp $(HEADERS
)
128 $(CC
) -c
$(SRC
)/varset.
cpp
130 daialg
$(OE
) : $(SRC
)/daialg.
cpp $(HEADERS
)
131 $(CC
) -c
$(SRC
)/daialg.
cpp
133 exactinf
$(OE
) : $(SRC
)/exactinf.
cpp $(INC
)/exactinf.h
$(HEADERS
)
134 $(CC
) -c
$(SRC
)/exactinf.
cpp
136 bp
$(OE
) : $(SRC
)/bp.
cpp $(INC
)/bp.h
$(HEADERS
)
137 $(CC
) -c
$(SRC
)/bp.
cpp
139 bp_dual
$(OE
) : $(SRC
)/bp_dual.
cpp $(INC
)/bp_dual.h
$(HEADERS
)
140 $(CC
) -c
$(SRC
)/bp_dual.
cpp
142 bbp
$(OE
) : $(SRC
)/bbp.
cpp $(INC
)/bbp.h
$(INC
)/bp_dual.h
$(HEADERS
)
143 $(CC
) -c
$(SRC
)/bbp.
cpp
145 cbp
$(OE
) : $(SRC
)/cbp.
cpp $(INC
)/cbp.h
$(INC
)/bbp.h
$(INC
)/bp_dual.h
$(HEADERS
)
146 $(CC
) -c
$(SRC
)/cbp.
cpp
148 lc
$(OE
) : $(SRC
)/lc.
cpp $(INC
)/lc.h
$(HEADERS
)
149 $(CC
) -c
$(SRC
)/lc.
cpp
151 mf
$(OE
) : $(SRC
)/mf.
cpp $(INC
)/mf.h
$(HEADERS
)
152 $(CC
) -c
$(SRC
)/mf.
cpp
154 factorgraph
$(OE
) : $(SRC
)/factorgraph.
cpp $(INC
)/factorgraph.h
$(HEADERS
)
155 $(CC
) -c
$(SRC
)/factorgraph.
cpp
157 util
$(OE
) : $(SRC
)/util.
cpp $(INC
)/util.h
$(HEADERS
)
158 $(CC
) -c
$(SRC
)/util.
cpp
160 regiongraph
$(OE
) : $(SRC
)/regiongraph.
cpp $(INC
)/regiongraph.h
$(HEADERS
)
161 $(CC
) -c
$(SRC
)/regiongraph.
cpp
163 hak
$(OE
) : $(SRC
)/hak.
cpp $(INC
)/hak.h
$(HEADERS
) $(INC
)/regiongraph.h
164 $(CC
) -c
$(SRC
)/hak.
cpp
166 clustergraph
$(OE
) : $(SRC
)/clustergraph.
cpp $(INC
)/clustergraph.h
$(HEADERS
)
167 $(CC
) -c
$(SRC
)/clustergraph.
cpp
169 jtree
$(OE
) : $(SRC
)/jtree.
cpp $(INC
)/jtree.h
$(HEADERS
) $(INC
)/weightedgraph.h
$(INC
)/clustergraph.h
$(INC
)/regiongraph.h
170 $(CC
) -c
$(SRC
)/jtree.
cpp
172 treeep
$(OE
) : $(SRC
)/treeep.
cpp $(INC
)/treeep.h
$(HEADERS
) $(INC
)/weightedgraph.h
$(INC
)/clustergraph.h
$(INC
)/regiongraph.h
$(INC
)/jtree.h
173 $(CC
) -c
$(SRC
)/treeep.
cpp
175 weightedgraph
$(OE
) : $(SRC
)/weightedgraph.
cpp $(INC
)/weightedgraph.h
$(HEADERS
)
176 $(CC
) -c
$(SRC
)/weightedgraph.
cpp
178 mr
$(OE
) : $(SRC
)/mr.
cpp $(INC
)/mr.h
$(HEADERS
)
179 $(CC
) -c
$(SRC
)/mr.
cpp
181 gibbs
$(OE
) : $(SRC
)/gibbs.
cpp $(INC
)/gibbs.h
$(HEADERS
)
182 $(CC
) -c
$(SRC
)/gibbs.
cpp
184 evidence
$(OE
) : $(SRC
)/evidence.
cpp $(INC
)/evidence.h
$(HEADERS
)
185 $(CC
) -c
$(SRC
)/evidence.
cpp
187 emalg
$(OE
) : $(SRC
)/emalg.
cpp $(INC
)/emalg.h
$(INC
)/evidence.h
$(HEADERS
)
188 $(CC
) -c
$(SRC
)/emalg.
cpp
190 properties
$(OE
) : $(SRC
)/properties.
cpp $(HEADERS
)
191 $(CC
) -c
$(SRC
)/properties.
cpp
193 exceptions
$(OE
) : $(SRC
)/exceptions.
cpp $(HEADERS
)
194 $(CC
) -c
$(SRC
)/exceptions.
cpp
196 alldai
$(OE
) : $(SRC
)/alldai.
cpp $(HEADERS
)
197 $(CC
) -c
$(SRC
)/alldai.
cpp
203 examples
/example
$(EE
) : examples
/example.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
204 $(CC
) $(CCO
)examples
/example
$(EE
) examples
/example.
cpp $(LIBS
)
206 examples
/example_bipgraph
$(EE
) : examples
/example_bipgraph.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
207 $(CC
) $(CCO
)examples
/example_bipgraph
$(EE
) examples
/example_bipgraph.
cpp $(LIBS
)
209 examples
/example_varset
$(EE
) : examples
/example_varset.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
210 $(CC
) $(CCO
)examples
/example_varset
$(EE
) examples
/example_varset.
cpp $(LIBS
)
212 examples
/example_permute
$(EE
) : examples
/example_permute.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
213 $(CC
) $(CCO
)examples
/example_permute
$(EE
) examples
/example_permute.
cpp $(LIBS
)
215 examples
/example_sprinkler
$(EE
) : examples
/example_sprinkler.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
216 $(CC
) $(CCO
)examples
/example_sprinkler
$(EE
) examples
/example_sprinkler.
cpp $(LIBS
)
222 tests
/testdai
$(EE
) : tests
/testdai.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
223 $(CC
) $(CCO
)tests
/testdai
$(EE
) tests
/testdai.
cpp $(LIBS
) $(BOOSTLIBS
)
224 tests
/testem
/testem
$(EE
) : tests
/testem
/testem.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
225 $(CC
) $(CCO
)$@
$< $(LIBS
) $(BOOSTLIBS
)
227 tests
/testbbp
$(EE
) : tests
/testbbp.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
228 $(CC
) $(CCO
)tests
/testbbp
$(EE
) tests
/testbbp.
cpp $(LIBS
)
234 matlab
/dai
$(ME
) : $(SRC
)/matlab
/dai.
cpp $(HEADERS
) matlab
$(OE
) $(LIB
)/libdai
$(LE
)
235 $(MEX
) -o matlab
/dai
$(SRC
)/matlab
/dai.
cpp matlab
$(OE
) $(LIB
)/libdai
$(LE
)
237 matlab
/dai_readfg
$(ME
) : $(SRC
)/matlab
/dai_readfg.
cpp $(HEADERS
) factorgraph
$(OE
) matlab
$(OE
) exceptions
$(OE
) bipgraph
$(OE
)
238 $(MEX
) -o matlab
/dai_readfg
$(SRC
)/matlab
/dai_readfg.
cpp factorgraph
$(OE
) matlab
$(OE
) exceptions
$(OE
) bipgraph
$(OE
)
240 matlab
/dai_writefg
$(ME
) : $(SRC
)/matlab
/dai_writefg.
cpp $(HEADERS
) factorgraph
$(OE
) matlab
$(OE
) exceptions
$(OE
) bipgraph
$(OE
)
241 $(MEX
) -o matlab
/dai_writefg
$(SRC
)/matlab
/dai_writefg.
cpp factorgraph
$(OE
) matlab
$(OE
) exceptions
$(OE
) bipgraph
$(OE
)
243 matlab
/dai_potstrength
$(ME
) : $(SRC
)/matlab
/dai_potstrength.
cpp $(HEADERS
) matlab
$(OE
) exceptions
$(OE
)
244 $(MEX
) -o matlab
/dai_potstrength
$(SRC
)/matlab
/dai_potstrength.
cpp matlab
$(OE
) exceptions
$(OE
)
246 matlab
$(OE
) : $(SRC
)/matlab
/matlab.
cpp $(INC
)/matlab
/matlab.h
$(HEADERS
)
247 $(MEX
) -c
$(SRC
)/matlab
/matlab.
cpp
253 utils
/createfg
$(EE
) : utils
/createfg.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
254 $(CC
) $(CCO
)utils
/createfg
$(EE
) utils
/createfg.
cpp $(LIBS
) $(BOOSTLIBS
)
256 utils
/fg2dot
$(EE
) : utils
/fg2dot.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
257 $(CC
) $(CCO
)utils
/fg2dot
$(EE
) utils
/fg2dot.
cpp $(LIBS
)
259 utils
/fginfo
$(EE
) : utils
/fginfo.
cpp $(HEADERS
) $(LIB
)/libdai
$(LE
)
260 $(CC
) $(CCO
)utils
/fginfo
$(EE
) utils
/fginfo.
cpp $(LIBS
)
266 ifneq ($(OS
),WINDOWS
)
267 $(LIB
)/libdai
$(LE
) : bipgraph
$(OE
) varset
$(OE
) daialg
$(OE
) alldai
$(OE
) clustergraph
$(OE
) factorgraph
$(OE
) properties
$(OE
) regiongraph
$(OE
) util
$(OE
) weightedgraph
$(OE
) exceptions
$(OE
) $(OBJECTS
)
269 ar rcus
$(LIB
)/libdai
$(LE
) bipgraph
$(OE
) varset
$(OE
) daialg
$(OE
) alldai
$(OE
) clustergraph
$(OE
) factorgraph
$(OE
) properties
$(OE
) regiongraph
$(OE
) util
$(OE
) weightedgraph
$(OE
) exceptions
$(OE
) $(OBJECTS
)
271 $(LIB
)/libdai
$(LE
) : bipgraph
$(OE
) varset
$(OE
) daialg
$(OE
) alldai
$(OE
) clustergraph
$(OE
) factorgraph
$(OE
) properties
$(OE
) regiongraph
$(OE
) util
$(OE
) weightedgraph
$(OE
) exceptions
$(OE
) $(OBJECTS
)
273 lib
/out
:$(LIB
)/libdai
$(LE
) bipgraph
$(OE
) varset
$(OE
) daialg
$(OE
) alldai
$(OE
) clustergraph
$(OE
) factorgraph
$(OE
) properties
$(OE
) regiongraph
$(OE
) util
$(OE
) weightedgraph
$(OE
) exceptions
$(OE
) $(OBJECTS
)
280 testregression
: tests
/testdai
$(EE
)
281 @echo Starting regression
test...this can take a minute or so
!
282 ifneq ($(OS
),WINDOWS
)
283 cd tests
&& .
/testregression
&& cd ..
285 cd tests
&& testregression.bat
&& cd ..
288 testem
: tests
/testem
/testem
$(EE
)
289 @echo Starting EM tests
290 ifneq ($(OS
),WINDOWS
)
291 cd tests
/testem
&& .
/runtests
&& cd ..
/..
293 cd tests
\testem
&& runtests
&& cd ..\..
300 doc
: $(INC
)/*.h
$(SRC
)/*.
cpp examples
/*.
cpp doxygen.conf
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
312 ifneq ($(OS
),WINDOWS
)
317 -rm examples
/example
$(EE
) examples
/example_bipgraph
$(EE
) examples
/example_varset
$(EE
) examples
/example_permute
$(EE
) examples
/example_sprinkler
$(EE
)
318 -rm tests
/testdai
$(EE
) tests
/testem
/testem
$(EE
) tests
/testbbp
$(EE
)
319 -rm utils
/fg2dot
$(EE
) utils
/createfg
$(EE
) utils
/fginfo
$(EE
)
333 -del tests
\testdai
$(EE
)
334 -del tests
\testbbp
$(EE
)
335 -del tests
\testem
\testem
$(EE
)
338 -del tests
\testem\
*.pdb
339 -del tests
\testem\
*.ilk
343 -del
$(LIB
)\libdai
$(LE
)