diff options
Diffstat (limited to 'src/plugins/ssotest/Makefile.am')
-rw-r--r-- | src/plugins/ssotest/Makefile.am | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/plugins/ssotest/Makefile.am b/src/plugins/ssotest/Makefile.am new file mode 100644 index 0000000..e84d648 --- /dev/null +++ b/src/plugins/ssotest/Makefile.am @@ -0,0 +1,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 + + |