#!/usr/bin/make -f

export DEB_BUILD_OPTIONS += noautodbgsym

include /usr/share/ocaml/ocamlvars.mk

%:
	dh $@ --with coq,ocaml

override_dh_auto_build:
	make

override_dh_auto_test:
	true # would need coq-lsp

override_dh_auto_install:
	make install PREFIX=debian/tmp/usr/
