isl_bool_not: avoid implicit enum conversion warning
[isl.git] / interface / Makefile.am
blobfa09ce46c3045b22423d72f24dd6ec8eb0ef1b93
1 AUTOMAKE_OPTIONS = nostdinc
3 noinst_PROGRAMS = extract_interface
5 includes = -I$(top_builddir) -I$(top_srcdir) \
6         -I$(top_builddir)/include -I$(top_srcdir)/include
8 extract_interface_CPPFLAGS = $(includes)
9 extract_interface_CXXFLAGS = $(CLANG_CXXFLAGS)
10 extract_interface_SOURCES = \
11         generator.h \
12         generator.cc \
13         python.h \
14         python.cc \
15         cpp.h \
16         cpp.cc \
17         cpp_conversion.h \
18         cpp_conversion.cc \
19         extract_interface.h \
20         extract_interface.cc
21 extract_interface_LDFLAGS = $(CLANG_LDFLAGS)
22 extract_interface_LDADD = \
23         -lclangFrontend -lclangSerialization -lclangParse -lclangSema \
24         $(LIB_CLANG_EDIT) \
25         -lclangAnalysis -lclangAST -lclangLex -lclangBasic -lclangDriver \
26         $(CLANG_LIBS) $(CLANG_LDFLAGS)