1 lib_LTLIBRARIES = libbarvinok.la
2 noinst_PROGRAMS = test barvinok_count randomtest barvinok_enumerate \
3 verif_ehrhart barvinok_enumerate_e verif_ehrhart_e
4 pkginclude_HEADERS = barvinok.h util.h ev_operations.h
6 libbarvinok_la_SOURCES = \
13 libbarvinok_la_LIBADD = @LTLIBOBJS@ -lstdc++
14 libbarvinok_la_LDFLAGS = -version-info @versioninfo@
15 LDADD = libbarvinok.la
18 barvinok_count_SOURCES = barvinok_count.c
20 TESTFILES = $(shell find $(top_srcdir)/tests -type f ! -path '*CVS*')
22 EXTRA_DIST = ChangeLog $(TESTFILES)
25 @for i in $(top_srcdir)/tests/*; do \
26 if test -f $$i; then \
28 ./test < $$i || echo -n " NOT"; \
32 @for i in $(top_srcdir)/tests/ehrhart/*; do \
33 if test -f $$i; then \
35 ./verif_ehrhart < $$i; \