NLM: initial support for NLM
[deb_libnfs.git] / lib / Makefile.am
1 lib_LTLIBRARIES = libnfs.la
2
3 libnfs_la_CPPFLAGS = -I$(abs_top_srcdir)/include \
4 -I../mount \
5 -I../nfs \
6 -I../nlm \
7 -I../portmap \
8 -I../rquota \
9 "-D_U_=__attribute__((unused))"
10
11 libnfs_la_SOURCES = \
12 init.c \
13 libnfs.c \
14 libnfs-sync.c \
15 pdu.c \
16 socket.c
17
18 libnfs_la_LDFLAGS = -version-info 1:3:0
19 libnfs_la_LIBADD = \
20 ../mount/libmount.la \
21 ../nfs/libnfs.la \
22 ../nlm/libnlm.la \
23 ../portmap/libportmap.la \
24 ../rquota/librquota.la
25