mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-02-13 10:51:09 +03:00
![Arvind Sankar](/assets/img/avatar_default.png)
There's no need to specify the srcdir explicitly in _HEADERS and EXTRA_DIST. Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu> Closes #10493
41 lines
1015 B
Makefile
41 lines
1015 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-volume-wait.service \
|
|
zfs-import.target \
|
|
zfs-volumes.target \
|
|
zfs.target
|
|
|
|
EXTRA_DIST = \
|
|
zfs-zed.service.in \
|
|
zfs-import-cache.service.in \
|
|
zfs-import-scan.service.in \
|
|
zfs-mount.service.in \
|
|
zfs-share.service.in \
|
|
zfs-import.target.in \
|
|
zfs-volume-wait.service.in \
|
|
zfs-volumes.target.in \
|
|
zfs.target.in \
|
|
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' \
|
|
$< >'$@'
|
|
|
|
install-data-hook:
|
|
$(MKDIR_P) "$(DESTDIR)$(systemdunitdir)"
|
|
ln -sf /dev/null "$(DESTDIR)$(systemdunitdir)/zfs-import.service"
|
|
|
|
# Double-colon rules are allowed; there are multiple independent definitions.
|
|
distclean-local::
|
|
-$(RM) $(systemdunit_DATA) $(systemdpreset_DATA)
|