diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/.cvsignore | 3 | ||||
-rw-r--r-- | lib/Makefile.am | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lib/.cvsignore b/lib/.cvsignore index e440faf..dc4caac 100644 --- a/lib/.cvsignore +++ b/lib/.cvsignore @@ -1,3 +1,6 @@ Makefile.in Makefile .deps +.libs +*.lo +*.la diff --git a/lib/Makefile.am b/lib/Makefile.am index 04d7039..64385be 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,10 +1,12 @@ ## Process this file with automake to produce Makefile.in -lib_LIBRARIES = libfuse.a +lib_LTLIBRARIES = libfuse.la -libfuse_a_SOURCES = \ +libfuse_la_SOURCES = \ fuse.c \ fuse_mt.c \ helper.c \ mount.c \ fuse_i.h + +libfuse_la_LDFLAGS = -lpthread -version-number 2:0:0 |