diff options
author | Steve Dickson <steved@redhat.com> | 2011-09-22 14:47:09 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2011-09-22 14:48:08 -0400 |
commit | 6b9d7ab4df98cf9881c7cc4341631eec25bb0e26 (patch) | |
tree | a52c33fc5ebd618459d347090e8eb5fbf335bd37 /utils/blkmapd/Makefile.am | |
parent | 4ee1190080fbb8cdd5ed2bef7c00a04799650b1b (diff) | |
download | nfs-utils-6b9d7ab4df98cf9881c7cc4341631eec25bb0e26.tar.gz nfs-utils-6b9d7ab4df98cf9881c7cc4341631eec25bb0e26.tar.xz nfs-utils-6b9d7ab4df98cf9881c7cc4341631eec25bb0e26.zip |
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 <rees@umich.edu>
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'utils/blkmapd/Makefile.am')
-rw-r--r-- | utils/blkmapd/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
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 + |