diff options
author | Simo Sorce <simo@redhat.com> | 2012-05-11 22:15:02 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-09-14 16:15:26 -0400 |
commit | 2c23cdb7718fa30f6ef28c90867830a710f3dafd (patch) | |
tree | e4020f8017db8cb545435a4b1036d4b0332604c3 /proxy | |
parent | a782177affad270b965fb483b6ed2e1b41aa4209 (diff) | |
download | gss-proxy-2c23cdb7718fa30f6ef28c90867830a710f3dafd.tar.gz gss-proxy-2c23cdb7718fa30f6ef28c90867830a710f3dafd.tar.xz gss-proxy-2c23cdb7718fa30f6ef28c90867830a710f3dafd.zip |
Build mechglue as a plugin
Diffstat (limited to 'proxy')
-rw-r--r-- | proxy/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/proxy/Makefile.am b/proxy/Makefile.am index 48a787d..11e780e 100644 --- a/proxy/Makefile.am +++ b/proxy/Makefile.am @@ -49,6 +49,9 @@ sbin_PROGRAMS = \ check_PROGRAMS = \ cli_srv_comm +gssplib_LTLIBRARIES = \ + proxymech.la + dist_noinst_SCRIPTS = dist_noinst_DATA = @@ -143,6 +146,16 @@ gssproxy_SOURCES = \ src/gp_rpc_wrap_size_limit.c \ src/gssproxy.c +proxymech_la_SOURCES = \ + src/gp_conv.c \ + $(GP_RPCGEN_OBJ) \ + $(GP_MECHGLUE_OBJ) +proxymech_la_CFLAGS = \ + $(AM_FLAGS) +proxymech_la_LDFLAGS = \ + -avoid-version \ + -module + cli_srv_comm_SOURCES = \ src/gp_conv.c \ src/gp_debug.c \ |