blob: e84d648d8412f99f20727b4c2f6707b2115f50c0 (
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
|
include $(top_srcdir)/common.mk
plugins_LTLIBRARIES = libssotest.la
NULL=
libssotest_la_CPPFLAGS = \
-I$(top_builddir) \
-I$(top_srcdir)/src \
-I$(top_srcdir)/include \
$(GSIGNOND_CFLAGS) \
$(NULL)
libssotest_la_LIBADD = \
$(top_builddir)/src/common/libgsignond-common.la \
$(GSIGNOND_LIBS) \
$(NULL)
libssotest_la_SOURCES = \
gsignond-ssotest-plugin.h \
gsignond-ssotest-plugin.c \
$(NULL)
all-local: slink
slink:
ln -sf $(abs_top_builddir)/src/plugins/ssotest/.libs/libssotest.so ../.libs/libssotest.so
|