This is needed for the new functions exposed in the C++ interface as used in https://reviews.llvm.org/D104994 Reviewed By: Meinersbur Differential Revision: https://reviews.llvm.org/D105132
29 lines
684 B
Makefile
29 lines
684 B
Makefile
ACLOCAL_AMFLAGS = -I ../m4
|
|
AUTOMAKE_OPTIONS = nostdinc
|
|
|
|
noinst_PROGRAMS = extract_interface
|
|
|
|
includes = -I$(top_builddir) -I$(top_srcdir) \
|
|
-I$(top_builddir)/include -I$(top_srcdir)/include
|
|
|
|
extract_interface_CPPFLAGS = $(includes)
|
|
extract_interface_CXXFLAGS = $(CLANG_CXXFLAGS)
|
|
extract_interface_SOURCES = \
|
|
generator.h \
|
|
generator.cc \
|
|
python.h \
|
|
python.cc \
|
|
cpp.h \
|
|
cpp.cc \
|
|
cpp_conversion.h \
|
|
cpp_conversion.cc \
|
|
plain_cpp.h \
|
|
plain_cpp.cc \
|
|
set_lang_defaults_arg4.h \
|
|
template_cpp.h \
|
|
template_cpp.cc \
|
|
extract_interface.h \
|
|
extract_interface.cc
|
|
extract_interface_LDFLAGS = $(CLANG_LDFLAGS) $(CLANG_RFLAG)
|
|
extract_interface_LDADD = $(CLANG_LIBS) $(CLANG_LDFLAGS)
|