1if WITH_CUTTER
2noinst_LTLIBRARIES =				\
3	test_mrn_path_mapper.la
4endif
5
6AM_CPPFLAGS =					\
7	$(GROONGA_CFLAGS)			\
8	$(CPPCUTTER_CFLAGS)			\
9	-I$(top_srcdir)				\
10	-I$(top_srcdir)/lib
11
12AM_LDFLAGS =					\
13	-module					\
14	-rpath $(libdir)			\
15	-avoid-version				\
16	-no-undefined
17
18LIBS =						\
19	$(CPPCUTTER_LIBS)			\
20	$(GROONGA_LIBS)				\
21	$(MECAB_LIBS)
22
23test_mrn_path_mapper_la_SOURCES =		\
24	test_mrn_path_mapper.cpp
25
26test_mrn_path_mapper_la_LIBADD =		\
27	$(top_builddir)/lib/libmrn_no_mysql.la
28