add isl_basic_map_fast_is_empty
[platform/upstream/isl.git] / Makefile.am
index 46906f1..db9270b 100644 (file)
@@ -5,6 +5,8 @@ endif
 SUBDIRS = $(MAYBE_PIPLIB) .
 DIST_SUBDIRS = $(MAYBE_PIPLIB)
 
+ACLOCAL_AMFLAGS = -I m4
+
 lib_LTLIBRARIES = libisl.la
 noinst_PROGRAMS = isl_test
 TESTS = isl_test
@@ -31,29 +33,46 @@ if BUNDLED_PIPLIB
 PIPLIB_LA = $(top_builddir)/piplib/libpiplibMP.la
 endif
 
+if NEED_GET_MEMORY_FUNCTIONS
+GET_MEMORY_FUNCTIONS=mp_get_memory_functions.c
+endif
+
 libisl_la_SOURCES = \
        $(ISL_PIPLIB) \
        $(ISL_POLYLIB) \
+       $(GET_MEMORY_FUNCTIONS) \
        isl_affine_hull.c \
        isl_blk.c \
+       isl_coalesce.c \
+       isl_constraint.c \
        isl_convex_hull.c \
        isl_ctx.c \
+       isl_dim.c \
+       isl_div.c \
        isl_equalities.c \
        isl_equalities.h \
        isl_gmp.c \
+       isl_hash.c \
        isl_input.c \
        isl_input_omega.c \
        isl_input_omega.h \
        isl_list.c \
        isl_lp.c \
        isl_map.c \
+       isl_map_simplify.c \
        isl_map_private.h \
        isl_mat.c \
        isl_mat.h \
+       isl_name.c \
+       isl_name.h \
        isl_output.c \
        isl_sample.h \
        isl_sample.c \
+       isl_stream.c \
+       isl_stream.h \
        isl_seq.c \
+       isl_tab.c \
+       isl_tab.h \
        isl_vec.c \
        isl_vec.h
 EXTRA_libisl_la_SOURCES = \
@@ -73,13 +92,19 @@ libisl_la_CPPFLAGS = -I$(srcdir)/include -Iinclude/ \
        @PIPLIB_CPPFLAGS@ @POLYLIB_CPPFLAGS@ \
        @GMP_CPPFLAGS@
 
-isl_test_CPPFLAGS = -I$(srcdir)/include -Iinclude/
+isl_test_CPPFLAGS = -I$(srcdir)/include -Iinclude/ @GMP_CPPFLAGS@
 isl_test_LDADD = libisl.la
 
+nodist_pkginclude_HEADERS = \
+       include/isl_ctx.h \
+       include/isl_stdint.h
 pkginclude_HEADERS = \
        include/isl_blk.h \
-       include/isl_ctx.h \
+       include/isl_constraint.h \
+       include/isl_dim.h \
+       include/isl_div.h \
        include/isl_int.h \
+       include/isl_hash.h \
        include/isl_list.h \
        include/isl_lp.h \
        include/isl_lp_piplib.h \