blob: ca45de0a1a857ff581fdacf597e8d22d6dd74cde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
testsources = \
test.cc
if HAVE_INPUT_TEST
testltlibs = libtest.la
testbuildsources = $(testsources)
else
testltlibs =
testbuildsources =
endif
EXTRA_DIST = $(testsources)
lib_LTLIBRARIES = $(testltlibs)
libdir = $(INPUT_PLUGIN_DIR)
INCLUDES = -I$(top_srcdir)/include
libtest_la_LDFLAGS =
libtest_la_LIBADD =
libtest_la_SOURCES = $(testbuildsources)
|