X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2FMakefile.am;h=f83871e40feed01881f40546894a3a537db56870;hb=1d95217b2f68772857bf7cffc4f1a655e43e80fb;hp=ba0eb433e7dee0fb57ee63c54fcb39885d041cd4;hpb=2e4db0d14597fdb0013fb16f24b3f872d1217397;p=deb_libnfs.git diff --git a/lib/Makefile.am b/lib/Makefile.am index ba0eb43..f83871e 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,13 +14,19 @@ libnfs_la_SOURCES = \ init.c \ libnfs.c \ libnfs-sync.c \ + libnfs-zdr.c \ pdu.c \ socket.c -libnfs_la_LDFLAGS = -version-info 0:0:0 +SOCURRENT=3 +SOREVISION=0 +SOAGE=2 +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