mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
5b1bc1a1d8
A lot of string replacement target don't have dependency or incorrect dependency. We setup proper dependency by pattern rules. Signed-off-by: Chunwei Chen <david.chen@osnexus.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #4908
30 lines
890 B
Makefile
30 lines
890 B
Makefile
systemdpreset_DATA = \
|
|
50-zfs.preset
|
|
|
|
systemdunit_DATA = \
|
|
zfs-zed.service \
|
|
zfs-import-cache.service \
|
|
zfs-import-scan.service \
|
|
zfs-mount.service \
|
|
zfs-share.service \
|
|
zfs.target
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/etc/systemd/system/zfs-zed.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-import-cache.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-import-scan.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-mount.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs-share.service.in \
|
|
$(top_srcdir)/etc/systemd/system/zfs.target.in \
|
|
$(top_srcdir)/etc/systemd/system/50-zfs.preset.in
|
|
|
|
$(systemdunit_DATA) $(systemdpreset_DATA):%:%.in
|
|
-$(SED) -e 's,@bindir\@,$(bindir),g' \
|
|
-e 's,@runstatedir\@,$(runstatedir),g' \
|
|
-e 's,@sbindir\@,$(sbindir),g' \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
$< >'$@'
|
|
|
|
distclean-local::
|
|
-$(RM) $(systemdunit_DATA) $(systemdpreset_DATA)
|