2010-03-10 10:48:43 +01:00
|
|
|
# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
2006-12-31 02:29:11 +01:00
|
|
|
#
|
2006-04-13 13:49:29 -07:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2006-12-27 02:23:51 +01:00
|
|
|
# the Free Software Foundation; version 2 of the License.
|
2006-12-31 02:29:11 +01:00
|
|
|
#
|
2006-04-13 13:49:29 -07:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2006-12-31 02:29:11 +01:00
|
|
|
#
|
2006-04-13 13:49:29 -07:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2006-12-31 02:29:11 +01:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2006-04-12 14:08:24 +02:00
|
|
|
|
2006-04-13 13:49:29 -07:00
|
|
|
# Process this file with automake to create Makefile.in
|
2006-04-12 14:08:24 +02:00
|
|
|
|
2006-04-13 13:49:29 -07:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2006-04-30 15:52:30 -04:00
|
|
|
# extra plugin example files are listed here, to
|
|
|
|
# keep its Makefile.am cleaner as a template
|
2006-04-24 13:36:15 -07:00
|
|
|
EXTRA_DIST = fulltext/configure.in
|
2006-04-30 15:52:30 -04:00
|
|
|
|
2006-04-29 09:33:34 -07:00
|
|
|
SUBDIRS = @mysql_pg_dirs@
|
2009-02-15 03:18:30 +01:00
|
|
|
DIST_SUBDIRS = @mysql_pg_distdirs@
|
2006-04-13 13:49:29 -07:00
|
|
|
|
2010-03-10 10:48:43 +01:00
|
|
|
# As of 5.5.3-m3, we want to include the plugin files of a debug build in the package
|
|
|
|
install-exec-hook:
|
|
|
|
$(mkinstalldirs) $(DESTDIR)$(pkglibdir) $(DESTDIR)$(pkglibdir)/plugin
|
2010-03-11 16:37:51 +01:00
|
|
|
test ! -d debug || $(TAR) cf - debug | ( cd $(DESTDIR)$(pkglibdir)/plugin && $(TAR) xvf - )
|