| 1 | lib_LTLIBRARIES = libnfs.la |
| 2 | |
| 3 | libnfs_la_CPPFLAGS = -I$(abs_top_srcdir)/include \ |
| 4 | -I$(abs_top_srcdir)/include/nfsc \ |
| 5 | -I$(abs_top_srcdir)/mount \ |
| 6 | -I$(abs_top_srcdir)/nfs \ |
| 7 | -I$(abs_top_srcdir)/nlm \ |
| 8 | -I$(abs_top_srcdir)/nsm \ |
| 9 | -I$(abs_top_srcdir)/portmap \ |
| 10 | -I$(abs_top_srcdir)/rquota \ |
| 11 | "-D_U_=__attribute__((unused))" |
| 12 | |
| 13 | libnfs_la_SOURCES = \ |
| 14 | init.c \ |
| 15 | libnfs.c \ |
| 16 | libnfs-sync.c \ |
| 17 | libnfs-zdr.c \ |
| 18 | pdu.c \ |
| 19 | socket.c |
| 20 | |
| 21 | SOCURRENT=6 |
| 22 | SOREVISION=0 |
| 23 | SOAGE=2 |
| 24 | libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE) |
| 25 | libnfs_la_LIBADD = \ |
| 26 | ../mount/libmount.la \ |
| 27 | ../nfs/libnfs.la \ |
| 28 | ../nlm/libnlm.la \ |
| 29 | ../nsm/libnsm.la \ |
| 30 | ../portmap/libportmap.la \ |
| 31 | ../rquota/librquota.la |
| 32 | |