You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.0 KiB

  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = subdir-objects
  3. AM_CPPFLAGS = -I$(top_srcdir)/include -DFUSERMOUNT_DIR=\"$(bindir)\" \
  4. -D_FILE_OFFSET_BITS=64 -D_REENTRANT -DFUSE_USE_VERSION=26
  5. lib_LTLIBRARIES = libfuse.la libulockmgr.la
  6. if BSD
  7. mount_source = mount_bsd.c
  8. else
  9. mount_source = mount.c mount_util.c mount_util.h
  10. endif
  11. if ICONV
  12. iconv_source = modules/iconv.c
  13. else
  14. iconv_source =
  15. endif
  16. libfuse_la_SOURCES = \
  17. fuse.c \
  18. fuse_i.h \
  19. fuse_kern_chan.c \
  20. fuse_loop.c \
  21. fuse_loop_mt.c \
  22. fuse_lowlevel.c \
  23. fuse_misc.h \
  24. fuse_mt.c \
  25. fuse_opt.c \
  26. fuse_session.c \
  27. fuse_signals.c \
  28. buffer.c \
  29. cuse_lowlevel.c \
  30. helper.c \
  31. modules/subdir.c \
  32. $(iconv_source) \
  33. $(mount_source)
  34. libfuse_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 2:9:7 \
  35. -Wl,--version-script,$(srcdir)/fuse_versionscript
  36. if NETBSD
  37. libfuse_la_LIBADD = -lperfuse -lpuffs
  38. endif
  39. libulockmgr_la_SOURCES = ulockmgr.c
  40. libulockmgr_la_LDFLAGS = -pthread -version-number 1:0:1
  41. EXTRA_DIST = fuse_versionscript