Makefile.am: remove reference to (re)moved header files
[platform/upstream/isl.git] / Makefile.am
1 if BUNDLED_PIPLIB
2 MAYBE_PIPLIB = piplib
3 endif
4
5 SUBDIRS = $(MAYBE_PIPLIB) .
6
7 lib_LTLIBRARIES = libisl.la
8 noinst_PROGRAMS = isl_test
9 TESTS = isl_test
10
11 if HAVE_POLYLIB
12 ISL_POLYLIB = \
13         isl_map_polylib.c
14 endif
15
16 if HAVE_PIPLIB
17 ISL_PIPLIB = \
18         isl_lp_piplib.c \
19         isl_map_piplib.c \
20         isl_sample_piplib.c \
21         isl_piplib.c
22 else
23 ISL_PIPLIB = \
24         isl_lp_no_piplib.c \
25         isl_map_no_piplib.c \
26         isl_sample_no_piplib.c
27 endif
28 if BUNDLED_PIPLIB
29 PIPLIB_LA = $(top_builddir)/piplib/libpiplibMP.la
30 endif
31
32 libisl_la_SOURCES = \
33         $(ISL_PIPLIB) \
34         $(ISL_POLYLIB) \
35         isl_affine_hull.c \
36         isl_blk.c \
37         isl_convex_hull.c \
38         isl_ctx.c \
39         isl_equalities.c \
40         isl_equalities.h \
41         isl_gmp.c \
42         isl_input.c \
43         isl_lp.c \
44         isl_map.c \
45         isl_map_private.h \
46         isl_mat.c \
47         isl_mat.h \
48         isl_sample.h \
49         isl_sample.c \
50         isl_seq.c \
51         isl_vec.c \
52         isl_vec.h
53 EXTRA_libisl_la_SOURCES = \
54         isl_lp_piplib.c \
55         isl_lp_no_piplib.c \
56         isl_map_piplib.c \
57         isl_map_no_piplib.c \
58         isl_map_polylib.c \
59         isl_sample_no_piplib.c \
60         isl_sample_piplib.c \
61         isl_piplib.c
62 libisl_la_LIBADD = $(PIPLIB_LA) @PIPLIB_LIBS@ @POLYLIB_LIBS@ -lgmp
63 libisl_la_LDFLAGS = -release @VERSION@ @PIPLIB_LDFLAGS@ @POLYLIB_LDFLAGS@ \
64         @GMP_LDFLAGS@
65 libisl_la_CPPFLAGS = -I$(srcdir)/include -Iinclude/ \
66         @PIPLIB_CPPFLAGS@ @POLYLIB_CPPFLAGS@ \
67         @GMP_CPPFLAGS@
68
69 isl_test_CPPFLAGS = -I$(srcdir)/include -Iinclude/
70 isl_test_LDADD = libisl.la
71
72 pkginclude_HEADERS = \
73         include/isl_blk.h \
74         include/isl_ctx.h \
75         include/isl_int.h \
76         include/isl_lp.h \
77         include/isl_lp_piplib.h \
78         include/isl_map.h \
79         include/isl_map_piplib.h \
80         include/isl_map_polylib.h \
81         include/isl_piplib.h \
82         include/isl_polylib.h \
83         include/isl_seq.h \
84         include/isl_set.h \
85         include/isl_set_polylib.h