mirror of https://github.com/jimsalterjrs/sanoid
15 lines
306 B
Makefile
Executable File
15 lines
306 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# See debhelper(7) for more info
|
|
|
|
# output every command that modifies files on the build system.
|
|
#export DH_VERBOSE = 1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
|
|
DESTDIR = $(CURDIR)/debian/sanoid
|
|
override_dh_auto_install:
|
|
install -d $(DESTDIR)/etc/sanoid
|
|
install -m 664 sanoid.defaults.conf $(DESTDIR)/etc/sanoid
|