Makefile.am: add dependencies for checks
[barvinok.git] / Makefile.am
blobb071853e57ec67c00f3ba989b076351a6c23abb1
1 if HAVE_GINAC
2     MAYBE_BERNSTEIN = bernstein
3 endif
4 SUBDIRS = $(MAYBE_BERNSTEIN) lib . omega doc
6 AM_CPPFLAGS = -I$(srcdir)/bernstein/include -I$(srcdir)/lib
7 AM_LDFLAGS = -Llib
9 lib_LTLIBRARIES = libbarvinok.la
10 bin_PROGRAMS = barvinok_count barvinok_enumerate barvinok_enumerate_e \
11                   barvinok_ehrhart
12 noinst_PROGRAMS = test randomtest \
13                   remove_redundant_equalities \
14                   barvinok_union \
15                   @bv_extra_programs@
16 EXTRA_PROGRAMS = piptest verify_lexsmaller polyhedron_sample 4coins lexmin \
17                  polytope_scan
18 pkginclude_HEADERS = \
19     barvinok/NTL_QQ.h \
20     barvinok/barvinok.h \
21     barvinok/util.h \
22     barvinok/evalue.h \
23     barvinok/genfun.h \
24     barvinok/options.h \
25     barvinok/polylib.h \
26     barvinok/sample.h \
27     barvinok/basis_reduction.h \
28     barvinok/bernstein.h
29 LINK = $(CXXLINK)
31 if HAVE_GINAC
32     BERNSTEIN_CC = bernstein.cc
33 endif
34 if HAVE_CDDLIB
35     BR_CDD = basis_reduction_cdd.cc initcdd.cc
36 endif
37 if HAVE_GLPK
38     BR_GLPK = basis_reduction_glpk.c
39 endif
40 libbarvinok_la_SOURCES = \
41     barvinok/evalue.h \
42     barvinok/genfun.h \
43     barvinok/util.h \
44     barvinok/barvinok.h \
45     NTL_QQ.cc \
46     basis_reduction.c \
47     evalue.c \
48     genfun.cc \
49     util.c \
50     version.c \
51     bfcounter.cc \
52     bfcounter.h \
53     conversion.cc \
54     conversion.h \
55     decomposer.cc \
56     decomposer.h \
57     dpoly.cc \
58     dpoly.h \
59     genfun_constructor.cc \
60     genfun_constructor.h \
61     lattice_point.cc \
62     lattice_point.h \
63     options.c \
64     reduce_domain.c \
65     reduce_domain.h \
66     reducer.cc \
67     reducer.h \
68     remove_equalities.h \
69     scarf.cc \
70     mat_util.cc \
71     mat_util.h \
72     barvinok.cc \
73     $(BERNSTEIN_CC) \
74     $(BR_CDD) \
75     $(BR_GLPK)
76 EXTRA_libbarvinok_la_SOURCES = \
77     bernstein.cc \
78     piputil.h \
79     initcdd.cc \
80     initcdd.h
81 if HAVE_GINAC
82     BERNSTEIN_LA = $(top_builddir)/bernstein/libbernstein.la
83 endif
84 libbarvinok_la_LIBADD = @LTLIBOBJS@ $(BERNSTEIN_LA) lib/libgnu.la
85 libbarvinok_la_LDFLAGS = @BV_LDFLAGS@ -version-info @versioninfo@
86 LDADD = libbarvinok.la
88 test_SOURCES = test.c
89 barvinok_count_SOURCES = barvinok_count.c
90 barvinok_ehrhart_SOURCES = barvinok_ehrhart.cc
91 barvinok_union_SOURCES = barvinok_union.cc
92 if HAVE_OMEGA
93 BEEO_SOURCES = omega/Exit.cc omega/convert.cc
94 else
95 BEEO_SOURCES = 
96 endif
97 barvinok_enumerate_SOURCES = \
98         barvinok_enumerate.cc \
99         fdstream.cc \
100         fdstream.h \
101         verify.h \
102         verify.c \
103         verif_ehrhart.h \
104         verif_ehrhart.c
105 barvinok_enumerate_e_SOURCES = \
106         verify.h \
107         verify.c \
108         barvinok_enumerate_e.cc \
109         $(BEEO_SOURCES)
110 barvinok_enumerate_e_CPPFLAGS = @OMEGA_CPPFLAGS@ $(AM_CPPFLAGS)
111 barvinok_enumerate_e_LDFLAGS = @OMEGA_LDFLAGS@ @LDFLAGS@
112 barvinok_enumerate_e_LDADD = @OMEGA_LIBS@ libbarvinok.la
113 4coins_SOURCES = 4coins.cc
114 if HAVE_CDDLIB
115 POLYSIGN = polysign_cddf.cc polysign_cdd.cc
116 endif
117 lexmin_SOURCES = \
118         lexmin.h \
119         lexmin.cc \
120         combine.c \
121         combine.h \
122         edomain.cc \
123         edomain.h \
124         evalue_util.cc \
125         evalue_util.h \
126         fdstream.cc \
127         fdstream.h \
128         $(POLYSIGN) \
129         polysign.c \
130         polysign_polylib.c \
131         polysign.h \
132         verify.h \
133         verify.c
134 EXTRA_lexmin_SOURCE = polysign_cddf.cc polysign_cdd.cc polysign.c
136 TESTFILES = $(shell find $(top_srcdir)/tests -type f ! -path '*CVS*')
138 EXTRA_DIST = \
139     ChangeLog \
140     $(TESTFILES) \
141     latte2polylib.pl \
142     NTL_5_3_2.patch \
143     doc/Internal.tex \
144     doc/applications.tex \
145     doc/barvinok.tex \
146     doc/omega.tex \
147     doc/polymake.tex \
148     doc/reports.tex \
149     doc/barvinok.bib \
150     doc/barvinok.gdf \
151     doc/chicago.bst \
152     doc/chicago.sty \
153     doc/mydefs.sty \
154     polymake/Makefile.in \
155     polymake/README \
156     polymake/autogen.sh \
157     polymake/configure.in \
158     polymake/lattice_points.cc
160 ACLOCAL_AMFLAGS = -I m4
162 install-data-local:
163         @test -z "$(pkgconfig_libdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfig_libdir)"
164         $(INSTALL_DATA) $(pkgconfig_libfile) "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
166 uninstall-local:
167         rm -f "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
169 dist-hook:
170         (cd $(distdir)/polymake; \
171             ./autogen.sh; rm -rf autogen.sh autom4te.cache)
172         (cd doc; make barvinok.pdf)
173         cp doc/barvinok.pdf $(distdir)/doc/
174         if test -f $(top_srcdir)/.git/HEAD; then \
175             echo @GIT_HEAD_VERSION@ > $(distdir)/GIT_HEAD_ID; \
176         else \
177             echo $(GIT_HEAD_ID) > $(distdir)/GIT_HEAD_ID; \
178         fi
180 if HAVE_PIPLIB
181 BEE_TESTDIRS = ehrhart_e ehrhart_e/scarf ehrhart_e/piplib
182 else
183 BEE_TESTDIRS = ehrhart_e ehrhart_e/scarf
184 endif
186 check: check-enumerate check-enumerate_e check-test check-lexmin
187 check-enumerate: barvinok_enumerate
188         @for i in $(top_srcdir)/tests/ehrhart/*; do \
189             if test -f $$i; then \
190                 echo $$i; \
191                 for options in '' '--series' '--series --primal'; do \
192                     for spec in 'random' 'bf' 'df'; do \
193                         opt="--specialization=$$spec $$options"; \
194                         echo "        $$opt"; \
195                         ./barvinok_enumerate --verify $$opt < $$i; \
196                     done \
197                 done \
198             fi \
199         done
200 check-enumerate_e: barvinok_enumerate_e
201         @for dir in $(BEE_TESTDIRS); do \
202             for i in $(top_srcdir)/tests/$$dir/*; do \
203                 if test -f $$i; then \
204                     for options in '' '--pip' '--pip --omega'; do \
205                         for spec in 'random' 'bf' 'df'; do \
206                             opt="--specialization=$$spec $$options"; \
207                             echo $$i $$opt; \
208                             ./barvinok_enumerate_e --verify $$opt < $$i; \
209                         done \
210                     done \
211                 fi \
212             done \
213         done
214         @for i in $(top_srcdir)/tests/ehrhart_e/scarf/*; do \
215             if test -f $$i; then \
216                 for spec in 'random' 'bf' 'df'; do \
217                     opt="--specialization=$$spec --scarf"; \
218                     echo $$i $$opt; \
219                     ./barvinok_enumerate_e --verify $$opt < $$i; \
220                 done \
221             fi \
222         done
223 check-test: test
224         @for i in $(top_srcdir)/tests/*; do \
225             if test -f $$i; then \
226                 for options in '--index=10' '--primal --index=10'; do \
227                     for spec in 'random' 'bf' 'df'; do \
228                         opt="--specialization=$$spec $$options"; \
229                         echo -n $$i $$opt; \
230                         ./test $$opt < $$i || echo -n " NOT"; \
231                         echo " ok"; \
232                     done \
233                 done \
234             fi \
235         done
236 check-lexmin: lexmin
237 if HAVE_GLPK
238         @for i in $(top_srcdir)/tests/lexmin/*; do \
239             if test -f $$i; then \
240                 for spec in 'random' 'bf' 'df'; do \
241                     opt="--specialization=$$spec"; \
242                     echo $$i $$opt; \
243                     ./lexmin --verify $$opt < $$i; \
244                 done \
245             fi \
246         done
247 endif
249 version.h: @GIT_HEAD@
250         echo '#define GIT_HEAD_ID "'@GIT_HEAD_VERSION@'"' > $@