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.

42 lines
951 B

  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. libfuse_la_SOURCES = \
  12. fuse.c \
  13. fuse_i.h \
  14. fuse_kern_chan.c \
  15. fuse_loop.c \
  16. fuse_loop_mt.c \
  17. fuse_lowlevel.c \
  18. fuse_misc.h \
  19. fuse_mt.c \
  20. fuse_opt.c \
  21. fuse_session.c \
  22. fuse_signals.c \
  23. buffer.c \
  24. cuse_lowlevel.c \
  25. helper.c \
  26. $(mount_source)
  27. libfuse_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 2:9:7 \
  28. -Wl,--version-script,$(srcdir)/fuse_versionscript
  29. if NETBSD
  30. libfuse_la_LIBADD = -lperfuse -lpuffs
  31. endif
  32. libulockmgr_la_SOURCES = ulockmgr.c
  33. libulockmgr_la_LDFLAGS = -pthread -version-number 1:0:1
  34. EXTRA_DIST = fuse_versionscript