~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hello_world/Makefile.am

  • Committer: Stewart Smith
  • Date: 2008-12-23 00:00:45 UTC
  • mfrom: (728 testable)
  • mto: This revision was merged to the branch mainline in revision 734.
  • Revision ID: stewart@flamingspork.com-20081223000045-4r4asnt8odzvqjpu
merge with mainline

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
 
#Makefile.am example for a Hello World
17
 
MYSQLDATAdir =          $(localstatedir)
18
 
MYSQLSHAREdir =         $(pkgdatadir)
19
 
MYSQLBASEdir=           $(prefix)
20
 
MYSQLLIBdir=            $(pkglibdir)
21
 
pkgplugindir =          $(pkglibdir)/plugin
22
16
 
23
17
EXTRA_LTLIBRARIES =     libhello_world.la
24
 
pkgplugin_LTLIBRARIES = @plugin_hello_world_shared_target@
 
18
pkgplugin_LTLIBRARIES = $(plugin_hello_world_shared_target)
25
19
libhello_world_la_LDFLAGS =     -module -avoid-version -rpath $(pkgplugindir)
26
20
libhello_world_la_CPPFLAGS=     $(AM_CPPFLAGS) -DDRIZZLE_DYNAMIC_PLUGIN
27
21
libhello_world_la_SOURCES =     hello_world.cc
28
22
 
29
23
 
30
24
EXTRA_LIBRARIES =       libhello_world.a
31
 
noinst_LIBRARIES =      @plugin_hello_world_static_target@
 
25
noinst_LIBRARIES =      $(plugin_hello_world_static_target)
32
26
libhello_world_a_CPPFLAGS =     $(AM_CPPFLAGS)
33
27
libhello_world_a_SOURCES=       hello_world.cc