~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hello_world/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-12-20 23:44:07 UTC
  • mto: (722.2.2 devel)
  • mto: This revision was merged to the branch mainline in revision 727.
  • Revision ID: monty@inaugust.com-20081220234407-585wdrdd1vxqqzam
Removed all the setting of DEFS everywhere. Use configmake.h to get the values
we need.

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