diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-06-03 13:21:08 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-06-03 13:21:08 +0000 |
commit | 203afbfa512490c58f7b98eec417ec3054f0d007 (patch) | |
tree | 87a6fde0f03bb6f1f1387091be7e27e47ea8a007 /lib/Makefile.am | |
parent | 3a11e5c68d1e4cf5e2bc6c1e1853cb44fa82f89a (diff) | |
download | libfuse-203afbfa512490c58f7b98eec417ec3054f0d007.tar.gz |
build shared library
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
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 |