Home | History | Annotate | Line # | Download | only in interface
Makefile.am revision 1.1.1.1
      1 ACLOCAL_AMFLAGS = -I ../m4
      2 AUTOMAKE_OPTIONS = nostdinc
      3 
      4 noinst_PROGRAMS = extract_interface
      5 
      6 includes = -I$(top_builddir) -I$(top_srcdir) \
      7 	-I$(top_builddir)/include -I$(top_srcdir)/include
      8 
      9 extract_interface_CPPFLAGS = $(includes)
     10 extract_interface_CXXFLAGS = $(CLANG_CXXFLAGS)
     11 extract_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
     27 extract_interface_LDFLAGS = $(CLANG_LDFLAGS) $(CLANG_RFLAG)
     28 extract_interface_LDADD = $(CLANG_LIBS) $(CLANG_LDFLAGS)
     29