12 lines
248 B
Makefile
12 lines
248 B
Makefile
initconfdir = $(DEFAULT_INITCONF_DIR)
|
|
initconf_SCRIPTS = zfs
|
|
|
|
EXTRA_DIST = \
|
|
$(top_srcdir)/etc/default/zfs.in
|
|
|
|
$(initconf_SCRIPTS):%:%.in Makefile
|
|
$(SED) \
|
|
-e 's,@sysconfdir\@,$(sysconfdir),g' \
|
|
$< >'$@'
|
|
|
|
CLEANFILES = $(initconf_SCRIPTS)
|