#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

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

DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)

Makeyorz:
	dh_testdir
	./configure --no-avcodec

configure: configure-stamp
configure-stamp: Makeyorz
	dh_testdir
	touch configure-stamp

build: build-arch build-indep

build-indep:
build-arch: build-stamp check

build-stamp: configure-stamp
	dh_testdir
	$(MAKE)
	touch build-stamp

check: check-stamp
check-stamp: build-stamp
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
ifeq (,$(filter $(DEB_HOST_ARCH), ia64))
	$(MAKE) check
else
	echo 'check suite deactivated on this architecture'
endif
else
	echo 'DEB_BUILD_OPTIONS contains "nocheck": skipping check step.'
endif
	touch check-stamp

# package has to be configured for the upstream distclean target to work
clean: configure-stamp
	dh_testdir
	dh_testroot
	rm -f check-stamp build-stamp configure-stamp
	$(MAKE) distclean
	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 

binary-indep: build install
binary-arch: build install
	dh_testdir
	dh_testroot
	dh_installyorick
	dh_installchangelogs 
	dh_installexamples
	dh_installdocs
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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