~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/uncompress/Makefile.am

  • Committer: Brian Aker
  • Date: 2009-03-03 18:50:34 UTC
  • mfrom: (908.1.17 mordred)
  • Revision ID: brian@tangent.org-20090303185034-obr7tiwx8vyn0i7j
Merge Monty

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
 
AM_CPPFLAGS =           ${GLOBAL_CPPFLAGS} -I${top_srcdir}/drizzled
17
16
EXTRA_LTLIBRARIES =     libuncompressudf.la
18
17
pkgplugin_LTLIBRARIES = @plugin_uncompress_shared_target@
19
18
libuncompressudf_la_LDFLAGS =   -module -avoid-version -rpath $(pkgplugindir) \
20
 
                                ${Z_LIBS}
21
 
libuncompressudf_la_CXXFLAGS=   $(AM_CXXFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN
 
19
                                ${LIBZ}
 
20
libuncompressudf_la_CPPFLAGS=   $(AM_CPPFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN
22
21
libuncompressudf_la_SOURCES =   uncompressudf.cc
23
22
 
24
23