1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
AM_CFLAGS=$(WARN_CFLAGS)
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)/nfs4 \
-I$(abs_top_srcdir)/nlm \
-I$(abs_top_srcdir)/nsm \
-I$(abs_top_srcdir)/portmap \
-I$(abs_top_srcdir)/rquota \
-I$(abs_top_srcdir)/win32 \
"-D_U_=__attribute__((unused))"
libnfs_la_SOURCES = \
init.c \
libnfs.c \
libnfs-sync.c \
libnfs-zdr.c \
multithreading.c \
nfs_v3.c \
nfs_v4.c \
pdu.c \
socket.c \
../win32/win32_compat.c
SOCURRENT=14
SOREVISION=0
SOAGE=0
libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE)
libnfs_la_LIBADD = \
../mount/libmount.la \
../nfs/libnfs.la \
../nfs4/libnfs4.la \
../nlm/libnlm.la \
../nsm/libnsm.la \
../portmap/libportmap.la \
../rquota/librquota.la
|