aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile.am
blob: 87e323a78a27fd9e51300e207339c9991199b273 (plain)
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
## Process this file with automake to produce Makefile.in

AM_CPPFLAGS = -I$(top_srcdir)/include -DFUSERMOUNT_DIR=\"$(bindir)\"
lib_LTLIBRARIES = libfuse.la libulockmgr.la

if BSD
mount_source = mount_bsd.c
else
mount_source = mount.c
endif

libfuse_la_SOURCES = 		\
	fuse.c			\
	fuse_i.h		\
	fuse_kern_chan.c	\
	fuse_loop.c		\
	fuse_loop_mt.c		\
	fuse_lowlevel.c		\
	fuse_misc.h		\
	fuse_mt.c		\
	fuse_opt.c		\
	fuse_session.c		\
	fuse_signals.c		\
	helper.c		\
	$(mount_source)

libfuse_la_LDFLAGS = $(libfuse_libs) -version-number 2:6:0 \
	-Wl,--version-script,$(srcdir)/fuse_versionscript

libulockmgr_la_SOURCES = ulockmgr.c
libulockmgr_la_LDFLAGS = -version-number 1:0:0

EXTRA_DIST = fuse_versionscript