1ACLOCAL_AMFLAGS = -I ../m4 2AUTOMAKE_OPTIONS = nostdinc 3 4noinst_PROGRAMS = extract_interface 5 6includes = -I$(top_builddir) -I$(top_srcdir) \ 7 -I$(top_builddir)/include -I$(top_srcdir)/include 8 9extract_interface_CPPFLAGS = $(includes) 10extract_interface_CXXFLAGS = $(CLANG_CXXFLAGS) 11extract_interface_SOURCES = \ 12 generator.h \ 13 generator.cc \ 14 python.h \ 15 python.cc \ 16 cpp.h \ 17 cpp.cc \ 18 cpp_conversion.h \ 19 cpp_conversion.cc \ 20 plain_cpp.h \ 21 plain_cpp.cc \ 22 set_lang_defaults_arg4.h \ 23 template_cpp.h \ 24 template_cpp.cc \ 25 extract_interface.h \ 26 extract_interface.cc 27extract_interface_LDFLAGS = $(CLANG_LDFLAGS) $(CLANG_RFLAG) 28extract_interface_LDADD = $(CLANG_LIBS) $(CLANG_LDFLAGS) 29