diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 06:03:02 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 06:03:02 +0000 |
commit | 4897093455a2bf08f3db3a1132cc2f6f5484d77c (patch) | |
tree | 9e6373544263f003139431fb4b08f9766e1ed530 /tools/nfsrahead/Makefile.am | |
parent | Initial commit. (diff) | |
download | nfs-utils-4897093455a2bf08f3db3a1132cc2f6f5484d77c.tar.xz nfs-utils-4897093455a2bf08f3db3a1132cc2f6f5484d77c.zip |
Adding upstream version 1:2.6.4.upstream/1%2.6.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tools/nfsrahead/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/nfsrahead/Makefile.am b/tools/nfsrahead/Makefile.am new file mode 100644 index 0000000..7e08233 --- /dev/null +++ b/tools/nfsrahead/Makefile.am @@ -0,0 +1,16 @@ +libexec_PROGRAMS = nfsrahead +nfsrahead_SOURCES = main.c +nfsrahead_LDFLAGS= $(LIBMOUNT_LIBS) +nfsrahead_LDADD = ../../support/nfs/libnfsconf.la + +man5_MANS = nfsrahead.man +EXTRA_DIST = $(man5_MANS) + +udev_rulesdir = /usr/lib/udev/rules.d/ +udev_rules_DATA = 99-nfs.rules + +99-nfs.rules: 99-nfs.rules.in $(builddefs) + $(SED) "s|_libexecdir_|@libexecdir@|g" 99-nfs.rules.in > $@ + +clean-local: + $(RM) 99-nfs.rules |