mirror of
https://github.com/openharmony/third_party_libfuse.git
synced 2026-07-18 18:44:26 -04:00
28 lines
491 B
Makefile
28 lines
491 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
lib_LTLIBRARIES = libfuse.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_mt.c \
|
|
fuse_opt.c \
|
|
fuse_session.c \
|
|
helper.c \
|
|
$(mount_source)
|
|
|
|
libfuse_la_LDFLAGS = -lpthread -version-number 2:5:0 \
|
|
-Wl,--version-script,fuse_versionscript
|
|
|
|
EXTRA_DIST = fuse_versionscript
|