#!/usr/bin/make -f
# Sample debian/rules that uses debhelper.
# GNU copyright 1997 to 1999 by Joey Hess.
#
# adapted by Logilab for automatic generation by debianize
# (part of the devtools project, http://www.logilab.org/projects/devtools)
#
# Copyright (c) 2003-2008 LOGILAB S.A. (Paris, FRANCE).
# http://www.logilab.fr/ -- mailto:contact@logilab.fr

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

%(RULE_HEAD)s

build: build-stamp
build-stamp: 
	dh_testdir%(BUILD_PYTHON)s
	touch build-stamp

clean: 
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp
	rm -rf build
	find . -name "*.pyc" | xargs rm -f
	rm -f changelog.gz
	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs%(INSTALL_PYTHON)s%(INSTALL_ALT)s%(SUBPACKAGE_INIT)s%(INSTALL_ELISP)s%(INSTALL_TEST)s


%(BINARY_INDEP)s

%(BINARY_ARCH)s

binary: %(BINARY_TARGET)s
.PHONY: build clean binary %(BINARY_TARGET)s

