#!/usr/bin/make -f

# Plain `dh` invocation; every override below delegates the actual
# work to the top-level Makefile so the build / install logic is
# single-sourced for packagers and the `make install PREFIX=$$prefix`
# convention.

%:
	dh $@

override_dh_auto_build:
	$(MAKE) all

override_dh_auto_install:
	$(MAKE) install DESTDIR=$(CURDIR)/debian/crustace-notifier PREFIX=/usr

override_dh_auto_clean:
	$(MAKE) clean
	dh_clean

override_dh_auto_test:
