#!/usr/bin/make -f
# -*- makefile -*-
# This file was originally written by Joey Hess and Craig Small.

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

%:
	dh $@ 

override_dh_auto_build:
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
	cp -a docs docs.debian
	$(MAKE) -C docs.debian html
endif

override_dh_auto_clean:
	rm -rf docs.debian
	dh_auto_clean

override_dh_compress:
	dh_compress -X.js
