From 6b9d7ab4df98cf9881c7cc4341631eec25bb0e26 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Thu, 22 Sep 2011 14:47:09 -0400 Subject: blkmapd: Add complex block layout discovery and mapping daemon This daemon is required to handle upcalls from the kernel pnfs block layout driver. Signed-off-by: Jim Rees Signed-off-by: Steve Dickson --- utils/blkmapd/Makefile.am | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 utils/blkmapd/Makefile.am (limited to 'utils/blkmapd/Makefile.am') diff --git a/utils/blkmapd/Makefile.am b/utils/blkmapd/Makefile.am new file mode 100644 index 0000000..203f9f2 --- /dev/null +++ b/utils/blkmapd/Makefile.am @@ -0,0 +1,19 @@ +## Process this file with automake to produce Makefile.in + +man8_MANS = blkmapd.man +EXTRA_DIST = $(man8_MANS) + +AM_CFLAGS += -D_LARGEFILE64_SOURCE +sbin_PROGRAMS = blkmapd + +blkmapd_SOURCES = \ + device-discovery.c \ + device-inq.c \ + device-process.c \ + dm-device.c \ + device-discovery.h + +blkmapd_LDADD = -ldevmapper ../../support/nfs/libnfs.a + +MAINTAINERCLEANFILES = Makefile.in + -- cgit