diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2009-12-23 11:29:19 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2009-12-23 11:29:19 -0500 |
commit | 64a3030683fab242a1608d7c35766130faffc1c0 (patch) | |
tree | 7892aa682cce09a3d70797cea0a68b06b84d754c /utils/statd/Makefile.am | |
parent | e6ec4637a0c9b42132dcbde73ad4506666b92975 (diff) | |
download | nfs-utils-64a3030683fab242a1608d7c35766130faffc1c0.tar.gz nfs-utils-64a3030683fab242a1608d7c35766130faffc1c0.tar.xz nfs-utils-64a3030683fab242a1608d7c35766130faffc1c0.zip |
libnsm.a: Move the sm_inter XDR pieces to libnsm.a
Clean up: Move the .x file and the generated C source for NSM to
libnsm.a, echoing the architecture of mountd and exportfs. This makes
the NSM protocol definitions, data types, and XDR routines available
to be shared across nfs-utils.
This simplifies the addition of other NSM-related code (for example
for testing or providing clustering support), and also provides
public data type definitions that can be used to make sense of the
contents of statd's on-disk database.
Because sim_sm_inter.x still resides in utils/statd, I've left some
rpcgen build magic in utils/statd/Makefile.am.
This is an internal organization change only. This patch should not
affect code behavior in any way.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils/statd/Makefile.am')
-rw-r--r-- | utils/statd/Makefile.am | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/utils/statd/Makefile.am b/utils/statd/Makefile.am index f64cd7a..d9731b7 100644 --- a/utils/statd/Makefile.am +++ b/utils/statd/Makefile.am @@ -2,32 +2,26 @@ man8_MANS = statd.man sm-notify.man -GENFILES_CLNT = sm_inter_clnt.c -GENFILES_SVC = sm_inter_svc.c -GENFILES_XDR = sm_inter_xdr.c -GENFILES_H = sm_inter.h - -GENFILES = $(GENFILES_CLNT) $(GENFILES_SVC) $(GENFILES_XDR) $(GENFILES_H) - RPCPREFIX = rpc. KPREFIX = @kprefix@ sbin_PROGRAMS = statd sm-notify dist_sbin_SCRIPTS = start-statd statd_SOURCES = callback.c notlist.c misc.c monitor.c \ simu.c stat.c statd.c svc_run.c rmtcall.c \ - sm_inter_clnt.c sm_inter_svc.c sm_inter_xdr.c \ - notlist.h statd.h system.h version.h sm_inter.h + notlist.h statd.h system.h version.h sm_notify_SOURCES = sm-notify.c BUILT_SOURCES = $(GENFILES) statd_LDADD = ../../support/export/libexport.a \ + ../../support/nsm/libnsm.a \ ../../support/nfs/libnfs.a \ ../../support/misc/libmisc.a \ $(LIBWRAP) $(LIBNSL) -sm_notify_LDADD = ../../support/nfs/libnfs.a \ +sm_notify_LDADD = ../../support/nsm/libnsm.a \ + ../../support/nfs/libnfs.a \ $(LIBNSL) -EXTRA_DIST = sim_sm_inter.x sm_inter.x $(man8_MANS) COPYRIGHT simulate.c +EXTRA_DIST = sim_sm_inter.x $(man8_MANS) COPYRIGHT simulate.c if CONFIG_RPCGEN RPCGEN = $(top_builddir)/tools/rpcgen/rpcgen |