mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / plugin / daemon_example / Makefile.am
blobf59079d4d655b254bbd4235c351dd9384252d64d
1 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; version 2 of the License.
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 # GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License
13 # along with this program; if not, write to the Free Software
14 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16 #Makefile.am example for a daemon
17 MYSQLDATAdir =          $(localstatedir)
18 MYSQLSHAREdir =         $(pkgdatadir)
19 MYSQLBASEdir=           $(prefix)
20 MYSQLLIBdir=            $(pkglibdir)
21 pkgplugindir =          $(pkglibdir)/plugin
22 INCLUDES =              -I$(top_srcdir)/include -I$(top_builddir)/include \
23                         -I$(top_srcdir)/regex \
24                         -I$(top_srcdir)/sql \
25                         -I$(srcdir) @ZLIB_INCLUDES@
27 EXTRA_LTLIBRARIES =     libdaemon_example.la
28 pkgplugin_LTLIBRARIES = @plugin_daemon_example_shared_target@
29 libdaemon_example_la_LDFLAGS =  -module -rpath $(pkgplugindir)
30 libdaemon_example_la_CXXFLAGS=  $(AM_CXXFLAGS) -DMYSQL_DYNAMIC_PLUGIN
31 libdaemon_example_la_CFLAGS =   $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
32 libdaemon_example_la_SOURCES =  daemon_example.cc
35 EXTRA_LIBRARIES =       libdaemon_example.a
36 noinst_LIBRARIES =      @plugin_daemon_example_static_target@
37 libdaemon_example_a_CXXFLAGS =  $(AM_CXXFLAGS)
38 libdaemon_example_a_CFLAGS =    $(AM_CFLAGS)
39 libdaemon_example_a_SOURCES=    daemon_example.cc
41 # Don't update the files from bitkeeper
42 %::SCCS/s.%