2012-05-30 14:46:51 +02:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
|
|
|
|
bin_PROGRAMS = \
|
|
|
|
dyntest
|
|
|
|
|
|
|
|
dyntest_SOURCES = \
|
|
|
|
dyntest.cpp
|
|
|
|
|
|
|
|
dyntest_CPPFLAGS = \
|
|
|
|
-DI2_DYNTEST_BUILD \
|
|
|
|
$(BOOST_CPPFLAGS) \
|
|
|
|
-I${top_srcdir}/base \
|
|
|
|
-I${top_srcdir}/dyn \
|
2012-06-05 15:05:15 +02:00
|
|
|
-I${top_srcdir}/jsonrpc \
|
2012-05-30 14:46:51 +02:00
|
|
|
-I${top_srcdir}
|
|
|
|
|
|
|
|
dyntest_LDFLAGS = \
|
|
|
|
$(BOOST_LDFLAGS)
|
|
|
|
|
|
|
|
dyntest_LDADD = \
|
|
|
|
${top_builddir}/base/libbase.la \
|
2012-06-05 15:05:15 +02:00
|
|
|
${top_builddir}/dyn/libdyn.la \
|
|
|
|
${top_builddir}/jsonrpc/libjsonrpc.la
|