diff options
Diffstat (limited to 'tools/gfind_missing_files/Makefile.am')
-rw-r--r-- | tools/gfind_missing_files/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/gfind_missing_files/Makefile.am b/tools/gfind_missing_files/Makefile.am new file mode 100644 index 00000000000..456aad836b6 --- /dev/null +++ b/tools/gfind_missing_files/Makefile.am @@ -0,0 +1,24 @@ +gfindmissingfilesdir = $(libexecdir)/glusterfs/gfind_missing_files + +gfindmissingfiles_SCRIPTS = gfind_missing_files.sh gfid_to_path.sh \ + gfid_to_path.py + +EXTRA_DIST = gfind_missing_files.sh gfid_to_path.sh \ + gfid_to_path.py + +gfindmissingfiles_PROGRAMS = gcrawler + +gcrawler_SOURCES = gcrawler.c + +AM_CPPFLAGS = $(GF_CPPFLAGS) -I$(top_srcdir)/libglusterfs/src + +AM_CFLAGS = -Wall $(GF_CFLAGS) + +uninstall-local: + rm -f $(DESTDIR)$(sbindir)/gfind_missing_files + +install-data-local: + rm -f $(DESTDIR)$(sbindir)/gfind_missing_files + ln -s $(libexecdir)/glusterfs/gfind_missing_files/gfind_missing_files.sh $(DESTDIR)$(sbindir)/gfind_missing_files + +CLEANFILES = |