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

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

include /usr/share/ocaml/ocamlvars.mk

%:
	dh $@ --with ocaml

.PHONY: build
build:
	dh $@ --with ocaml

override_dh_auto_configure:
	./configure -prefix /usr

override_dh_auto_install:
	INSTALL_ROOT=$(CURDIR)/debian/tmp $(MAKE) install
