diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..f123526 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,11 @@ +## Process this file with automake to produce Makefile.in + +bin_PROGRAMS = bindfs + +noinst_HEADERS = debug.h permchain.h userinfo.h misc.h +bindfs_SOURCES = bindfs.c permchain.c userinfo.c misc.c + +AM_CFLAGS = $(fuse_CFLAGS) +bindfs_LDADD = $(fuse_LIBS) + +man_MANS = bindfs.1 |