X-Git-Url: https://git.piment-noir.org/?p=deb_libnfs.git;a=blobdiff_plain;f=lib%2FMakefile.am;h=1f9a55a7d0e55515730d1c214ff24c162ab1612a;hp=499a155f37dac739b587dd355f4bee3ff132e3ac;hb=3c769bb1bd1fd46b1c73283cd333020ad075619b;hpb=6c437065d363dee7f14296e80ae34877e4e1e78c diff --git a/lib/Makefile.am b/lib/Makefile.am index 499a155..1f9a55a 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,8 +1,11 @@ lib_LTLIBRARIES = libnfs.la libnfs_la_CPPFLAGS = -I$(abs_top_srcdir)/include \ + -I$(abs_top_srcdir)/include/nfsc \ -I$(abs_top_srcdir)/mount \ -I$(abs_top_srcdir)/nfs \ + -I$(abs_top_srcdir)/nlm \ + -I$(abs_top_srcdir)/nsm \ -I$(abs_top_srcdir)/portmap \ -I$(abs_top_srcdir)/rquota \ "-D_U_=__attribute__((unused))" @@ -11,12 +14,19 @@ libnfs_la_SOURCES = \ init.c \ libnfs.c \ libnfs-sync.c \ + libnfs-zdr.c \ pdu.c \ socket.c +SOCURRENT=5 +SOREVISION=0 +SOAGE=1 +libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE) libnfs_la_LIBADD = \ - $(abs_top_srcdir)/mount/libmount.la \ - $(abs_top_srcdir)/nfs/libnfs.la \ - $(abs_top_srcdir)/portmap/libportmap.la \ - $(abs_top_srcdir)/rquota/librquota.la + ../mount/libmount.la \ + ../nfs/libnfs.la \ + ../nlm/libnlm.la \ + ../nsm/libnsm.la \ + ../portmap/libportmap.la \ + ../rquota/librquota.la