~hrvojem/percona-pam-for-mysql/doc-45

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Laurynas Biveinis
  • Date: 2011-12-12 14:35:39 UTC
  • mfrom: (16.1.1 import-dialog)
  • Revision ID: laurynas.biveinis@percona.com-20111212143539-3w4c34m2nwi00ytp
AutomergeĀ lp:~laurynas-biveinis/percona-pam-for-mysql/import-dialog

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
plugindir = @PLUGINDIR@
18
18
 
19
 
plugin_LTLIBRARIES = auth_pam.la test_auth_pam_client.la
 
19
plugin_LTLIBRARIES = auth_pam.la test_auth_pam_client.la dialog.la
 
20
plugin_CPPFLAGS = -DMYSQL_DYNAMIC_PLUGIN
 
21
plugin_LDFLAGS = -module -avoid-version -shared
 
22
 
20
23
auth_pam_la_SOURCES = auth_pam.c lib_auth_pam_client.h lib_auth_pam_client.c
21
 
auth_pam_la_CPPFLAGS = -DMYSQL_DYNAMIC_PLUGIN
22
 
auth_pam_la_LDFLAGS = -module -avoid-version -shared
 
24
auth_pam_la_CPPFLAGS = $(plugin_CPPFLAGS)
 
25
auth_pam_la_LDFLAGS = $(plugin_LDFLAGS)
 
26
 
23
27
test_auth_pam_client_la_SOURCES = test_auth_pam_client.c \
24
28
        lib_auth_pam_client.h lib_auth_pam_client.c
25
 
test_auth_pam_client_la_LDFLAGS = -module -avoid-version -shared
 
29
test_auth_pam_client_la_LDFLAGS = $(plugin_LDFLAGS)
 
30
 
 
31
dialog_la_SOURCES = dialog.c
 
32
dialog_la_CPPFLAGS = $(plugin_CPPFLAGS)
 
33
dialog_la_LDFLAGS = $(plugin_LDFLAGS)