mirror of https://github.com/trapexit/mergerfs.git
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.
58 lines
2.0 KiB
58 lines
2.0 KiB
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = -D_FILE_OFFSET_BITS=64
|
|
bin_PROGRAMS = fusermount ulockmgr_server
|
|
noinst_PROGRAMS = mount.fuse
|
|
|
|
# we re-use mount_util.c from the library, but do want to keep ourself
|
|
# as stand-alone as possible. in order to make an out-of-source build
|
|
# possible, we "generate" the file from its original location by
|
|
# copying it over.
|
|
fusermount_SOURCES = fusermount.c mount_util.c
|
|
fusermount_CPPFLAGS = -I$(top_srcdir)/lib
|
|
BUILT_SOURCES = mount_util.c
|
|
mount_util.c: $(top_srcdir)/lib/mount_util.c
|
|
@cp $(top_srcdir)/lib/mount_util.c .
|
|
|
|
mount_fuse_SOURCES = mount.fuse.c
|
|
|
|
ulockmgr_server_SOURCES = ulockmgr_server.c
|
|
ulockmgr_server_CPPFLAGS = -D_FILE_OFFSET_BITS=64 -D_REENTRANT
|
|
ulockmgr_server_LDFLAGS = -pthread
|
|
|
|
install-exec-hook:
|
|
-chmod u+s $(DESTDIR)$(bindir)/fusermount
|
|
@if test ! -e $(DESTDIR)/dev/fuse; then \
|
|
$(MKDIR_P) $(DESTDIR)/dev; \
|
|
echo "mknod $(DESTDIR)/dev/fuse -m 0666 c 10 229 || true"; \
|
|
mknod $(DESTDIR)/dev/fuse -m 0666 c 10 229 || true; \
|
|
fi
|
|
|
|
EXTRA_DIST = udev.rules init_script
|
|
|
|
MOUNT_FUSE_PATH = @MOUNT_FUSE_PATH@
|
|
UDEV_RULES_PATH = @UDEV_RULES_PATH@
|
|
INIT_D_PATH = @INIT_D_PATH@
|
|
|
|
install-exec-local:
|
|
$(MKDIR_P) $(DESTDIR)$(MOUNT_FUSE_PATH)
|
|
$(INSTALL_PROGRAM) $(builddir)/mount.fuse $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse
|
|
$(MKDIR_P) $(DESTDIR)$(INIT_D_PATH)
|
|
$(INSTALL_SCRIPT) $(srcdir)/init_script $(DESTDIR)$(INIT_D_PATH)/fuse
|
|
@if test -x /usr/sbin/update-rc.d; then \
|
|
echo "/usr/sbin/update-rc.d fuse start 34 S . start 41 0 6 . || true"; \
|
|
/usr/sbin/update-rc.d fuse start 34 S . start 41 0 6 . || true; \
|
|
fi
|
|
|
|
install-data-local:
|
|
$(MKDIR_P) $(DESTDIR)$(UDEV_RULES_PATH)
|
|
$(INSTALL_DATA) $(srcdir)/udev.rules $(DESTDIR)$(UDEV_RULES_PATH)/99-fuse.rules
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(MOUNT_FUSE_PATH)/mount.fuse
|
|
rm -f $(DESTDIR)$(UDEV_RULES_PATH)/99-fuse.rules
|
|
rm -f $(DESTDIR)$(INIT_D_PATH)/fuse
|
|
@if test -x /usr/sbin/update-rc.d; then \
|
|
echo "/usr/sbin/update-rc.d fuse remove || true"; \
|
|
/usr/sbin/update-rc.d fuse remove || true; \
|
|
fi
|