mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
10 lines
321 B
Makefile
10 lines
321 B
Makefile
#Makefile.am example for a plugin
|
|
|
|
pkglibdir=$(libdir)/mysql
|
|
INCLUDES= -I$(top_builddir)/include -I$(top_srcdir)/include
|
|
#noinst_LTLIBRARIES= mypluglib.la
|
|
pkglib_LTLIBRARIES= mypluglib.la
|
|
mypluglib_la_SOURCES= plugin_example.c
|
|
mypluglib_la_LDFLAGS= -module -rpath $(pkglibdir)
|
|
mypluglib_la_CFLAGS= -DMYSQL_DYNAMIC_PLUGIN
|