#!/usr/bin/make -f
# -*- makefile -*-

build:

clean:
	dh_testdir
	dh_testroot
	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs
#	cp cdd/config.conf $(CURDIR)/debian/tmp/etc/default/cdd-config

# Build architecture-independent files here.
binary: install
	dh_testdir
	dh_testroot
	dh_installchangelogs 
	dh_installdocs
	dh_installexamples
	dh_install
	dh_gconf --priority 50
	dh_installman
	dh_link
	dh_strip
	dh_compress
	dh_installdeb
	dh_fixperms
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

.PHONY: binary install clean
