X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2FMakefile.am;h=aa0855f76c5e3b34b7cb0505bc072c4e89e5c75f;hb=8e003243fbec4cff4af3e9ca01ea713065336970;hp=499a155f37dac739b587dd355f4bee3ff132e3ac;hpb=6c437065d363dee7f14296e80ae34877e4e1e78c;p=deb_libnfs.git diff --git a/lib/Makefile.am b/lib/Makefile.am index 499a155..aa0855f 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=4 +SOREVISION=0 +SOAGE=0 +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