Merge branch 'topcom'
[barvinok.git] / Makefile.am
blob8f8b2356a325f2638db1454d838e6b4b985e153b
1 if HAVE_GINAC
2     MAYBE_BERNSTEIN = bernstein
3 endif
4 if BUNDLED_POLYLIB
5     MAYBE_POLYLIB = polylib
6 endif
7 if BUNDLED_PIPLIB
8     MAYBE_PIPLIB = piplib
9 endif
10 SUBDIRS = $(MAYBE_PIPLIB) $(MAYBE_POLYLIB) $(MAYBE_BERNSTEIN) lib . omega doc
12 FORCE:
13 lib/libgnu.la: FORCE
14         $(MAKE) $(AM_MAKEFLAGS) -C lib libgnu.la
15 bernstein/libbernstein.la: FORCE
16         $(MAKE) $(AM_MAKEFLAGS) -C bernstein libbernstein.la
17 polylib/libpolylibgmp.la: FORCE
18         $(MAKE) $(AM_MAKEFLAGS) -C polylib libpolylibgmp.la
19 piplib/libpiplibMP.la: FORCE
20         $(MAKE) $(AM_MAKEFLAGS) -C piplib libpiplibMP.la
22 AM_CPPFLAGS = -I$(srcdir)/bernstein/include -I$(srcdir)/lib \
23               @POLYLIB_CPPFLAGS@ @PIPLIB_CPPFLAGS@ @GINACLIB_CPPFLAGS@
24 AM_LDFLAGS = -Llib @POLYLIB_LDFLAGS@ @PIPLIB_LDFLAGS@
26 lib_LTLIBRARIES = libbarvinok.la
27 bin_PROGRAMS = barvinok_count barvinok_enumerate barvinok_enumerate_e \
28                   barvinok_ehrhart polytope_scan
29 noinst_PROGRAMS = test testlib randomtest \
30                   remove_redundant_equalities \
31                   barvinok_union polytope_volume test_approx \
32                   barvinok_summate verify_lexsmaller piptest \
33                   polyhedron_sample 4coins lexmin @bv_barvinok_maximize@
34 EXTRA_PROGRAMS = barvinok_maximize
35 pkginclude_HEADERS = \
36     barvinok/NTL_QQ.h \
37     barvinok/barvinok.h \
38     barvinok/util.h \
39     barvinok/evalue.h \
40     barvinok/genfun.h \
41     barvinok/options.h \
42     barvinok/polylib.h \
43     barvinok/sample.h \
44     barvinok/basis_reduction.h \
45     barvinok/bernstein.h
46 nodist_pkginclude_HEADERS = \
47     barvinok/NTL.h \
48     barvinok/set.h
49 LINK = $(CXXLINK)
51 if HAVE_GINAC
52     BERNSTEIN_CC = bernstein.cc
53 endif
54 if HAVE_CDDLIB
55     BR_CDD = basis_reduction_cdd.cc initcdd.cc
56     POLYSIGN_CDD = polysign_cddf.cc polysign_cdd.cc
57 endif
58 if HAVE_GLPK
59     BR_GLPK = basis_reduction_glpk.c
60     POLYSIGN_GLPK = polysign_glpk.c
61 endif
62 if HAVE_TOPCOM
63     TOPCOM = topcom.c topcom.h
64 endif
65 libbarvinok_la_SOURCES = \
66     barvinok/evalue.h \
67     barvinok/genfun.h \
68     barvinok/util.h \
69     barvinok/barvinok.h \
70     NTL_QQ.cc \
71     basis_reduction.c \
72     basis_reduction_pip.c \
73     basis_reduction_pip_dual.c \
74     evalue.c \
75     genfun.cc \
76     util.c \
77     version.c \
78     bernoulli.c \
79     bernoulli.h \
80     bfcounter.cc \
81     bfcounter.h \
82     conversion.cc \
83     conversion.h \
84     counter.cc \
85     counter.h \
86     decomposer.cc \
87     decomposer.h \
88     dpoly.cc \
89     dpoly.h \
90     euler.cc \
91     euler.h \
92     genfun_constructor.cc \
93     genfun_constructor.h \
94     lattice_point.cc \
95     lattice_point.h \
96     options.c \
97     param_util.c \
98     param_util.h \
99     piputil.h \
100     piputil.c \
101     $(POLYSIGN_CDD) \
102     $(POLYSIGN_GLPK) \
103     polysign.c \
104     polysign_polylib.c \
105     polysign.h \
106     reduce_domain.c \
107     reduce_domain.h \
108     reducer.cc \
109     reducer.h \
110     remove_equalities.h \
111     remove_equalities.c \
112     sample.c \
113     scale.c \
114     scale.h \
115     scarf.cc \
116     series.cc \
117     tcounter.cc \
118     tcounter.h \
119     $(TOPCOM) \
120     volume.c \
121     volume.h \
122     mat_util.cc \
123     mat_util.h \
124     barvinok.cc \
125     barvinok_e.cc \
126     $(BERNSTEIN_CC) \
127     $(BR_CDD) \
128     $(BR_GLPK)
129 EXTRA_libbarvinok_la_SOURCES = \
130     basis_reduction_cdd.cc \
131     basis_reduction_glpk.c \
132     bernstein.cc \
133     polysign_cddf.cc \
134     polysign_cdd.cc \
135     polysign.c \
136     initcdd.cc \
137     initcdd.h \
138     topcom.c \
139     topcom.h
140 if HAVE_GINAC
141     BERNSTEIN_LA = $(top_builddir)/bernstein/libbernstein.la
142 endif
143 if BUNDLED_POLYLIB
144     POLYLIB_LA = $(top_builddir)/polylib/libpolylibgmp.la
145 endif
146 if BUNDLED_PIPLIB
147     PIPLIB_LA = $(top_builddir)/piplib/libpiplibMP.la
148 endif
149 libbarvinok_la_LIBADD = @LTLIBOBJS@ $(POLYLIB_LA) @POLYLIB_LIBS@ \
150                         $(PIPLIB_LA) @PIPLIB_LIBS@ $(BERNSTEIN_LA) \
151                         lib/libgnu.la
152 libbarvinok_la_LDFLAGS = @BV_LDFLAGS@ -version-info @versioninfo@
153 LDADD = libbarvinok.la @POLYLIB_LIBS@ @PIPLIB_LIBS@
155 test_SOURCES = test.c
156 testlib_SOURCES = \
157         evalue_read.c \
158         evalue_read.h \
159         testlib.cc
160 barvinok_count_SOURCES = barvinok_count.c
161 barvinok_ehrhart_SOURCES = barvinok_ehrhart.cc
162 barvinok_union_SOURCES = barvinok_union.cc
163 if HAVE_OMEGA
164 BEEO_SOURCES = omega/Exit.cc omega/convert.cc
165 else
166 BEEO_SOURCES = 
167 endif
168 if USE_FDSTREAM
169 FDSTREAM = fdstream.cc fdstream.h
170 endif
171 barvinok_enumerate_SOURCES = \
172         barvinok_enumerate.cc \
173         evalue_convert.cc \
174         evalue_convert.h \
175         $(FDSTREAM) \
176         verify.h \
177         verify.c \
178         verif_ehrhart.h \
179         verif_ehrhart.c
180 EXTRA_barvinok_enumerate_SOURCES = fdstream.cc fdstream.h
181 barvinok_enumerate_e_SOURCES = \
182         barvinok_enumerate_e.cc \
183         evalue_convert.cc \
184         evalue_convert.h \
185         $(FDSTREAM) \
186         verify.h \
187         verify.c \
188         verif_ehrhart.h \
189         verif_ehrhart.c \
190         $(BEEO_SOURCES)
191 EXTRA_barvinok_enumerate_e_SOURCES = fdstream.cc fdstream.h
192 barvinok_enumerate_e_CPPFLAGS = @OMEGA_CPPFLAGS@ $(AM_CPPFLAGS)
193 barvinok_enumerate_e_LDFLAGS = @OMEGA_LDFLAGS@ @LDFLAGS@
194 barvinok_enumerate_e_LDADD = @OMEGA_LIBS@ libbarvinok.la @POLYLIB_LIBS@ @PIPLIB_LIBS@
195 barvinok_maximize_SOURCES = \
196         evalue_convert.cc \
197         evalue_convert.h \
198         evalue_read.c \
199         evalue_read.h \
200         $(FDSTREAM) \
201         maximize.cc \
202         verify.h \
203         verify.c
204 EXTRA_barvinok_maximize_SOURCES = fdstream.cc fdstream.h
205 barvinok_summate_SOURCES = \
206         evalue_convert.cc \
207         evalue_convert.h \
208         evalue_read.c \
209         evalue_read.h \
210         $(FDSTREAM) \
211         summate.cc \
212         verify.h \
213         verify.c
214 EXTRA_barvinok_summate_SOURCES = fdstream.cc fdstream.h
215 4coins_SOURCES = 4coins.cc
216 lexmin_SOURCES = \
217         lexmin.h \
218         lexmin.cc \
219         combine.c \
220         combine.h \
221         edomain.cc \
222         edomain.h \
223         evalue_util.cc \
224         evalue_util.h \
225         verify.h \
226         verify.c
227 test_approx_SOURCES = \
228         test_approx.c \
229         verify.h \
230         verify.c
232 TESTFILES = $(shell find $(top_srcdir)/tests -type f ! -path '*CVS*')
234 EXTRA_DIST = \
235     ChangeLog \
236     $(TESTFILES) \
237     latte2polylib.pl \
238     NTL_5_3_2.patch \
239     basis_reduction_templ.c \
240     polysign_cdd_template.cc \
241     barvinok/NTL.h.broken \
242     barvinok/NTL.h.normal \
243     barvinok/set.h.broken \
244     barvinok/set.h.normal \
245     doc/Internal.tex \
246     doc/applications.tex \
247     doc/barvinok.tex \
248     doc/omega.tex \
249     doc/polymake.tex \
250     doc/reports.tex \
251     doc/barvinok.bib \
252     doc/barvinok.gdf \
253     doc/chicago.bst \
254     doc/chicago.sty \
255     doc/mydefs.sty \
256     polymake/Makefile.in \
257     polymake/README \
258     polymake/autogen.sh \
259     polymake/configure.in \
260     polymake/lattice_points.cc
262 ACLOCAL_AMFLAGS = -I m4
264 install-data-local:
265         @test -z "$(pkgconfig_libdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfig_libdir)"
266         $(INSTALL_DATA) $(pkgconfig_libfile) "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
268 uninstall-local:
269         rm -f "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
271 dist-hook:
272         (cd $(distdir)/polymake; \
273             ./autogen.sh; rm -rf autogen.sh autom4te.cache)
274         (cd doc; make barvinok.pdf)
275         cp doc/barvinok.pdf $(distdir)/doc/
276         if test -f $(top_srcdir)/.git/HEAD; then \
277             echo @GIT_HEAD_VERSION@ > $(distdir)/GIT_HEAD_ID; \
278         else \
279             echo $(GIT_HEAD_ID) > $(distdir)/GIT_HEAD_ID; \
280         fi
282 dist-git: dist
283         mv $(distdir).tar.gz @GIT_HEAD_VERSION@.tar.gz
285 BEE_TESTDIRS = ehrhart_e ehrhart_e/scarf ehrhart_e/piplib
287 check: check-testlib check-enumerate check-enumerate_e check-test \
288         check-lexmin check-approx check-evalue check-euler
289 check-testlib: testlib$(EXEEXT)
290         ./testlib$(EXEEXT)
291 check-approx: test_approx$(EXEEXT)
292         @for i in $(top_srcdir)/tests/ehrhart/*; do \
293             if test -f $$i; then \
294                 echo $$i | ./test_approx$(EXEEXT) -q -r 10 || exit; \
295             fi \
296         done
297 check-evalue: @bv_barvinok_maximize@ barvinok_summate$(EXEEXT)
298         @for i in $(top_srcdir)/tests/evalue/*; do \
299             if test -f $$i; then \
300                 if test -n "@bv_barvinok_maximize@"; then \
301                     ./barvinok_maximize$(EXEEXT) -T < $$i || exit; \
302                 fi; \
303                 ./barvinok_summate$(EXEEXT) -T < $$i || exit; \
304             fi \
305         done
306 check-euler: barvinok_summate$(EXEEXT)
307         @for i in $(top_srcdir)/tests/euler/*; do \
308             if test -f $$i; then \
309                 echo $$i; \
310                 ./barvinok_summate$(EXEEXT) -T --summation=euler < $$i || exit; \
311             fi \
312         done
313 if HAVE_TOPCOM
314     TOPCOM_CD = '--chamber-decomposition=topcom'
315 endif
316 check-enumerate: barvinok_enumerate$(EXEEXT)
317         @for i in $(top_srcdir)/tests/ehrhart/*; do \
318             if test -f $$i; then \
319                 echo $$i; \
320                 for options in '' '--series' '--series --primal' $(TOPCOM_CD); do \
321                     for spec in 'random' 'bf' 'df'; do \
322                         opt="--specialization=$$spec $$options"; \
323                         echo "        $$opt"; \
324                         ./barvinok_enumerate$(EXEEXT) --verify $$opt < $$i || exit; \
325                     done \
326                 done \
327             fi \
328         done
329 check-enumerate_e: barvinok_enumerate_e$(EXEEXT)
330         @for dir in $(BEE_TESTDIRS); do \
331             for i in $(top_srcdir)/tests/$$dir/*; do \
332                 if test -f $$i; then \
333                     for options in '' '--pip' '--pip --omega'; do \
334                         for spec in 'random' 'bf' 'df'; do \
335                             opt="--specialization=$$spec $$options"; \
336                             echo $$i $$opt; \
337                             ./barvinok_enumerate_e$(EXEEXT) --verify $$opt < $$i || exit; \
338                         done \
339                     done \
340                 fi \
341             done \
342         done
343         @for i in $(top_srcdir)/tests/ehrhart_e/scarf/*; do \
344             if test -f $$i; then \
345                 for spec in 'random' 'bf' 'df'; do \
346                     opt="--specialization=$$spec --scarf"; \
347                     echo $$i $$opt; \
348                     ./barvinok_enumerate_e$(EXEEXT) --verify $$opt < $$i || exit; \
349                 done \
350             fi \
351         done
352 check-test: test$(EXEEXT)
353         @for i in $(top_srcdir)/tests/*; do \
354             if test -f $$i; then \
355                 for options in '--index=10' '--primal --index=10'; do \
356                     for spec in 'random' 'bf' 'df' 'todd'; do \
357                         opt="--specialization=$$spec $$options"; \
358                         echo -n $$i $$opt; \
359                         ./test$(EXEEXT) $$opt < $$i || echo -n " NOT"; \
360                         echo " ok"; \
361                     done \
362                 done \
363             fi \
364         done
365 if HAVE_GLPK
366 check-lexmin: lexmin$(EXEEXT)
367         @for i in $(top_srcdir)/tests/lexmin/*; do \
368             if test -f $$i; then \
369                 for spec in 'random' 'bf' 'df'; do \
370                     opt="--specialization=$$spec"; \
371                     echo $$i $$opt; \
372                     ./lexmin$(EXEEXT) --verify $$opt < $$i || exit; \
373                 done \
374             fi \
375         done
376 else
377 check-lexmin:
378 endif
380 version.h: @GIT_HEAD@
381         echo '#define GIT_HEAD_ID "'@GIT_HEAD_VERSION@'"' > $@