X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=Makefile.am;h=bb25f1d372c61825d5a629e996316fe7ea7624af;hb=63fb8a7f484648c3caa25351c8c94ac2395ec563;hp=5a8d307c36d7f8242e74a548488ff815b81e9d14;hpb=a3e3c35fe631d3dbaa923d3199fc49f615269df7;p=platform%2Fupstream%2Fisl.git diff --git a/Makefile.am b/Makefile.am index 5a8d307..bb25f1d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,8 +11,8 @@ lib_LTLIBRARIES = libisl.la noinst_PROGRAMS = isl_test isl_polyhedron_sample isl_pip \ isl_polyhedron_minimize isl_polytope_scan \ isl_polyhedron_detect_equalities isl_cat \ - isl_closure isl_bound -TESTS = isl_test pip_test.sh bound_test.sh + isl_closure isl_bound isl_codegen +TESTS = isl_test codegen_test.sh pip_test.sh bound_test.sh if HAVE_PIPLIB ISL_PIPLIB = \ @@ -42,6 +42,15 @@ libisl_la_SOURCES = \ isl_aff_private.h \ isl_affine_hull.c \ isl_arg.c \ + isl_ast.c \ + isl_ast_private.h \ + isl_ast_build.c \ + isl_ast_build_private.h \ + isl_ast_build_expr.c \ + isl_ast_build_expr.h \ + isl_ast_codegen.c \ + isl_ast_graft.c \ + isl_ast_graft_private.h \ isl_band.c \ isl_band_private.h \ isl_basis_reduction.h \ @@ -57,6 +66,7 @@ libisl_la_SOURCES = \ isl_convex_hull.c \ isl_ctx.c \ isl_ctx_private.h \ + isl_deprecated.c \ isl_dim.c \ isl_dim_map.h \ isl_dim_map.c \ @@ -73,8 +83,7 @@ libisl_la_SOURCES = \ isl_hmap_map_basic_set.h \ isl_ilp.c \ isl_input.c \ - isl_list.c \ - isl_list_private.h \ + isl_int.h \ isl_local_space_private.h \ isl_local_space.c \ isl_lp.c \ @@ -94,8 +103,6 @@ libisl_la_SOURCES = \ isl_options.c \ isl_options_private.h \ isl_output.c \ - isl_qsort.c \ - isl_qsort.h \ isl_piplib.h \ isl_point_private.h \ isl_point.c \ @@ -114,6 +121,9 @@ libisl_la_SOURCES = \ isl_scan.h \ isl_schedule.c \ isl_schedule_private.h \ + isl_set_list.c \ + isl_sort.c \ + isl_sort.h \ isl_space.c \ isl_space_private.h \ isl_stream.c \ @@ -122,9 +132,13 @@ libisl_la_SOURCES = \ isl_tab.c \ isl_tab.h \ isl_tab_pip.c \ + isl_tarjan.c \ + isl_tarjan.h \ isl_transitive_closure.c \ isl_union_map.c \ isl_union_map_private.h \ + isl_val.c \ + isl_val_gmp.c \ isl_vec.c \ isl_version.c \ isl_vertices_private.h \ @@ -158,6 +172,12 @@ isl_pip_LDADD = libisl.la @GMP_LIBS@ isl_pip_SOURCES = \ pip.c +isl_codegen_CPPFLAGS = $(INCLUDES) @GMP_CPPFLAGS@ +isl_codegen_LDFLAGS = @GMP_LDFLAGS@ +isl_codegen_LDADD = libisl.la @GMP_LIBS@ +isl_codegen_SOURCES = \ + codegen.c + isl_bound_CPPFLAGS = $(INCLUDES) @GMP_CPPFLAGS@ isl_bound_LDFLAGS = @GMP_LDFLAGS@ isl_bound_LDADD = libisl.la @GMP_LIBS@ @@ -197,6 +217,8 @@ pkginclude_HEADERS = \ include/isl/aff.h \ include/isl/aff_type.h \ include/isl/arg.h \ + include/isl/ast.h \ + include/isl/ast_build.h \ include/isl/band.h \ include/isl/blk.h \ include/isl/constraint.h \ @@ -227,22 +249,30 @@ pkginclude_HEADERS = \ include/isl/space.h \ include/isl/stream.h \ include/isl/union_map.h \ + include/isl/union_map_type.h \ include/isl/union_set.h \ + include/isl/union_set_type.h \ + include/isl/val.h \ + include/isl/val_gmp.h \ include/isl/vec.h \ include/isl/version.h \ include/isl/vertices.h EXTRA_DIST = \ + LICENSE \ isl_config_post.h \ basis_reduction_templ.c \ isl_list_templ.c \ isl_list_templ.h \ + isl_map_lexopt_templ.c \ isl_multi_templ.c \ isl_multi_templ.h \ print_templ.c \ + isl_power_templ.c \ isl_pw_templ.c \ isl_union_templ.c \ isl.py \ + doc/SubmittingPatches \ doc/chicago.bst \ doc/chicago.sty \ doc/implementation.tex \ @@ -250,6 +280,8 @@ EXTRA_DIST = \ doc/mypod2latex \ doc/manual.tex \ doc/user.pod \ + interface/all.h \ + interface/isl.py.top \ test_inputs dist-hook: @@ -264,7 +296,7 @@ gitversion.h: @GIT_HEAD@ $(AM_V_GEN)echo '#define GIT_HEAD_ID "'@GIT_HEAD_VERSION@'"' > $@ install-data-local: $(srcdir)/isl.py - @libisl=`sed -ne "/^library_names=/{s/.*='//;s/'$$//;s/ .*//;p}" \ + @libisl=`sed -ne "/^library_names=/{s/.*='//;s/'$$//;s/ .*//;p;}" \ $(builddir)/libisl.la`; \ case $$libisl in \ '') echo Cannot find isl library name. GDB bindings not installed.;; \