diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-06-30 05:47:13 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-06-30 05:47:13 +0000 |
commit | a22a088109b664efdee397affed55b039cb0999b (patch) | |
tree | 3beaed69bcb23d5d3ea2aad6f65d9185311618a8 /plugins | |
parent | dff80b644fb16f97962773c384de44b13fbdee56 (diff) |
Don't use lib prefix for plugins
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index fac16104..a8e833d0 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -2,23 +2,23 @@ plugindir = $(libdir)/bluetooth/plugins if NETLINK -netlink_plugins = libnetlink.la +netlink_plugins = netlink.la else netlink_plugins = endif plugin_LTLIBRARIES = $(netlink_plugins) -noinst_LTLIBRARIES = libecho.la libstorage.la +noinst_LTLIBRARIES = echo.la storage.la -libecho_la_SOURCES = echo.c +echo_la_SOURCES = echo.c -libstorage_la_SOURCES = storage.c +storage_la_SOURCES = storage.c if NETLINK -libnetlink_la_SOURCES = netlink.c +netlink_la_SOURCES = netlink.c -libnetlink_la_LIBADD = @NETLINK_LIBS@ +netlink_la_LIBADD = @NETLINK_LIBS@ endif AM_LDFLAGS = -module -avoid-version -no-undefined \ @@ -31,13 +31,13 @@ INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid MAINTAINERCLEANFILES = Makefile.in all-local: - @$(LN_S) -f $(top_srcdir)/input/.libs/libinput.so - @$(LN_S) -f $(top_srcdir)/audio/.libs/libaudio.so - @$(LN_S) -f $(top_srcdir)/serial/.libs/libserial.so - @$(LN_S) -f $(top_srcdir)/network/.libs/libnetwork.so + @$(LN_S) -f $(top_srcdir)/input/.libs/input.so + @$(LN_S) -f $(top_srcdir)/audio/.libs/audio.so + @$(LN_S) -f $(top_srcdir)/serial/.libs/serial.so + @$(LN_S) -f $(top_srcdir)/network/.libs/network.so clean-local: - @rm -f libnetwork.so - @rm -f libserial.so - @rm -f libaudio.so - @rm -f libinput.so + @rm -f network.so + @rm -f serial.so + @rm -f audio.so + @rm -f input.so |