~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/compression/Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-04-12 08:14:18 UTC
  • mto: (992.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: mordred@inaugust.com-20090412081418-dc6gh3g3awkrhwov
Merged compress, uncompress and uncompressed_length into one plugin lib. Yay new plugin registration!

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# along with this program; if not, write to the Free Software
14
14
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
15
 
16
 
EXTRA_LTLIBRARIES =     libcompressudf.la
17
 
pkgplugin_LTLIBRARIES = @plugin_compress_shared_target@
18
 
libcompressudf_la_LDFLAGS =     -module -avoid-version -rpath $(pkgplugindir)\
19
 
                                ${LIBZ}
20
 
libcompressudf_la_CPPFLAGS=     $(AM_CPPFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN
21
 
libcompressudf_la_SOURCES =     compressudf.cc
22
 
 
23
 
 
24
 
EXTRA_LIBRARIES =       libcompressudf.a
25
 
noinst_LIBRARIES =      @plugin_compress_static_target@
26
 
libcompressudf_a_SOURCES=       $(libcompressudf_la_SOURCES)
 
16
EXTRA_LTLIBRARIES=              libcompressionudf.la
 
17
pkgplugin_LTLIBRARIES=          @plugin_compression_shared_target@
 
18
libcompressionudf_la_LDFLAGS=   -module -avoid-version -rpath $(pkgplugindir)\
 
19
                                ${LTLIBZ}
 
20
libcompressionudf_la_CPPFLAGS=  $(AM_CPPFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN
 
21
libcompressionudf_la_SOURCES=   compress.cc \
 
22
                                compressionudf.cc \
 
23
                                uncompress.cc \
 
24
                                uncompressed_length.cc
 
25
 
 
26
 
 
27
EXTRA_LIBRARIES=                libcompressionudf.a
 
28
noinst_LIBRARIES=               @plugin_compression_static_target@
 
29
libcompressionudf_a_SOURCES=    $(libcompressionudf_la_SOURCES)