24 lines
616 B
Makefile
24 lines
616 B
Makefile
hooksdir = /usr/share/initramfs-tools/hooks
|
|
|
|
hooks_SCRIPTS = \
|
|
zfs
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/contrib/initramfs/hooks/zfs.in
|
|
|
|
$(hooks_SCRIPTS):%:%.in
|
|
-$(SED) -e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
-e 's,@udevdir\@,$(udevdir),g' \
|
|
-e 's,@udevruledir\@,$(udevruledir),g' \
|
|
-e 's,@mounthelperdir\@,$(mounthelperdir),g' \
|
|
$< >'$@'
|
|
|
|
# Double-colon rules are allowed; there are multiple independent definitions.
|
|
clean-local::
|
|
-$(RM) $(hooks_SCRIPTS)
|
|
|
|
# Double-colon rules are allowed; there are multiple independent definitions.
|
|
distclean-local::
|
|
-$(RM) $(hooks_SCRIPTS)
|