Rewrite build system using automake
[deb_libnfs.git] / lib / Makefile.am
1 lib_LTLIBRARIES = libnfs.la
2
3 libnfs_la_CPPFLAGS = -I$(abs_top_srcdir)/include \
4 -I$(abs_top_srcdir)/mount \
5 -I$(abs_top_srcdir)/nfs \
6 -I$(abs_top_srcdir)/portmap \
7 -I$(abs_top_srcdir)/rquota \
8 "-D_U_=__attribute__((unused))"
9
10 libnfs_la_SOURCES = \
11 init.c \
12 libnfs.c \
13 libnfs-sync.c \
14 pdu.c \
15 socket.c
16
17 libnfs_la_LIBADD = \
18 $(abs_top_srcdir)/mount/libmount.la \
19 $(abs_top_srcdir)/nfs/libnfs.la \
20 $(abs_top_srcdir)/portmap/libportmap.la \
21 $(abs_top_srcdir)/rquota/librquota.la
22