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

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

include /usr/share/ocaml/ocamlvars.mk

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

execute_after_dh_auto_clean:
	rm -Rf html

execute_before_dh_auto_build:
	make depend

execute_after_dh_auto_install:
	chrpath -d debian/tmp$(OCAML_DLL_DIR)/dllperl4caml.so

override_dh_installexamples:
	dh_installexamples -Xgoogle.ml
