File: rules

package info (click to toggle)
extlib 1.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 576 kB
  • ctags: 963
  • sloc: ml: 6,155; makefile: 104; ansic: 31; sh: 9
file content (27 lines) | stat: -rwxr-xr-x 697 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/make -f

include /usr/share/ocaml/ocamlvars.mk

PKGDIR = $(CURDIR)/debian/tmp
export OCAMLFIND_DESTDIR = $(PKGDIR)$(OCAML_STDLIB_DIR)

%:
	dh $@ --with ocaml

override_dh_auto_install:
	# if we do not create this directory manually beforehand, `ocamlfind install` will exit with:
	# ocamlfind: Bad configuration: Cannot mkdir [...] because a path component does not exist or is not a directory
	mkdir -p $(OCAMLFIND_DESTDIR)
	dh_auto_install

override_dh_installchangelogs:
	dh_installchangelogs CHANGES

# do not require ocamlopt during building or testing
ifneq ($(OCAML_HAVE_OCAMLOPT),yes)
override_dh_auto_build:
	make -C src all

override_dh_auto_test:
	make -C test all run
endif