blob: 35466abb41749a09e4d3837ef8aa177280614525 (
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
27
28
29
|
testsources = \
test.cc
if HAVE_INPUT_TEST
testltlibs = test.la
testbuildsources = $(testsources)
else
testltlibs =
testbuildsources =
endif
EXTRA_DIST = $(testsources)
lib_LTLIBRARIES = $(testltlibs)
libdir = $(INPUT_PLUGIN_DIR)
AM_CPPFLAGS = -I$(top_srcdir)/include
test_la_LDFLAGS = -module -avoid-version -shared
test_la_LIBADD =
test_la_SOURCES = $(testbuildsources)
install-exec-hook:
rm -f $(DESTDIR)$(libdir)/test.la
|