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

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

%:
	dh $@ --no-parallel --with ocaml

.PHONY: override_dh_auto_clean
override_dh_auto_clean:
	dh_auto_clean
	rm -Rf html

.PHONY: override_dh_auto_build
override_dh_auto_build:
	make depend
	dh_auto_build

.PHONY: override_dh_installexamples
override_dh_installexamples:
	dh_installexamples -Xgoogle.ml
