aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index 4c24816..0000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-bin_PROGRAMS = bindfs
-
-noinst_HEADERS = debug.h permchain.h userinfo.h arena.h misc.h usermap.h rate_limiter.h
-bindfs_SOURCES = bindfs.c debug.c permchain.c userinfo.c arena.c misc.c usermap.c rate_limiter.c
-
-AM_CPPFLAGS = ${my_CPPFLAGS} ${fuse_CFLAGS} ${fuse3_CFLAGS} ${fuse_t_CFLAGS}
-AM_CFLAGS = ${my_CFLAGS}
-bindfs_LDADD = ${fuse_LIBS} ${fuse3_LIBS} ${fuse_t_LIBS} ${my_LDFLAGS}
-
-man_MANS = bindfs.1
-
-if INSTALL_MACOS_FS_LINK
-bindfs_BUNDLEDIR = $(DESTDIR)/Library/Filesystems/bindfs.fs
-bindfs_BUNDLEBINDIR = "${bindfs_BUNDLEDIR}/Contents/Resources"
-
-install-exec-hook:
- (mkdir -p "${bindfs_BUNDLEBINDIR}"; ln -sf "${bindir}/bindfs" "${bindfs_BUNDLEBINDIR}/mount_bindfs")
-
-uninstall-hook:
- (rm -rf ${bindfs_BUNDLEDIR})
-endif