#!/usr/bin/make -f

include /usr/share/ocaml/ocamlvars.mk

export DEB_BUILD_OPTIONS += noautodbgsym

export BINDIR = /usr/bin

%:
	dh $@ --with coq,ocaml

override_dh_auto_clean:
	find . -name "*.vo*" -delete
	find . -name "*.aux" -delete
	find . -name "*.glob" -delete
	rm -f META.coq-dpdgraph Make_coq Make_coq.conf config.log config.status

override_dh_auto_build:
	make
