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 /audio/Makefile.am | |
parent | dff80b644fb16f97962773c384de44b13fbdee56 (diff) |
Don't use lib prefix for plugins
Diffstat (limited to 'audio/Makefile.am')
-rw-r--r-- | audio/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/Makefile.am b/audio/Makefile.am index ca9abddd..0c6acfab 100644 --- a/audio/Makefile.am +++ b/audio/Makefile.am @@ -2,16 +2,16 @@ if AUDIOPLUGIN plugindir = $(libdir)/bluetooth/plugins -plugin_LTLIBRARIES = libaudio.la +plugin_LTLIBRARIES = audio.la -libaudio_la_SOURCES = main.c \ +audio_la_SOURCES = main.c \ manager.h manager.c headset.h headset.c \ ipc.h ipc.c unix.h unix.c \ device.h device.c gateway.h gateway.c \ sink.c sink.h avdtp.c avdtp.h \ a2dp.c a2dp.h control.c control.h -libaudio_la_LDFLAGS = -module -avoid-version -no-undefined \ +audio_la_LDFLAGS = -module -avoid-version -no-undefined \ -export-symbols-regex bluetooth_plugin_desc LDADD = $(top_builddir)/common/libhelper.a \ |