#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

build install binary-indep:
# No-op

clean:
	dh_testdir
	dh_testroot
	dh_clean

# Build architecture-dependent files here.
binary-arch:
	dh_testdir
	dh_testroot
	dh_clean -k
	mkdir -p debian/silo-installer/sbin
	cp device2obp debian/silo-installer/sbin/device2obp
	chmod 755 debian/silo-installer/sbin/device2obp
	dh_installdebconf
	dh_installdeb 
	debian/install-rc check.d
	dh_gencontrol
	dh_builddeb

binary: binary-arch binary-indep
.PHONY: build clean binary-arch binary-indep binary install
