File: rules

package info (click to toggle)
tyxml 2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 652 kB
  • sloc: ml: 8,786; makefile: 235; sh: 1
file content (42 lines) | stat: -rwxr-xr-x 906 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/make -f
# -*- makefile -*-

DESTDIR=$(CURDIR)/debian/tmp

include /usr/share/ocaml/ocamlvars.mk

export OCAMLFIND_DESTDIR := $(DESTDIR)/$(OCAML_STDLIB_DIR)
export OCAMLOBJINFO := ocamlduceobjinfo

ifeq ($(OCAML_HAVE_OCAMLOPT),yes)
  BUILD_TARGET := byte opt
  INSTALL_TARGET := install
else
  BUILD_TARGET := byte
  INSTALL_TARGET := install-byte
endif

ifeq ($(OCAML_NATDYNLINK),yes)
  MAKE_EXTRA_VARS :=
else
  MAKE_EXTRA_VARS := NATDYNLINK=NO
endif

%:
	dh $@ --with ocaml

.PHONY: override_dh_auto_build
override_dh_auto_build:
	$(MAKE) $(MAKE_EXTRA_VARS) $(BUILD_TARGET)

.PHONY: override_dh_auto_install
override_dh_auto_install:
	mkdir -p $(OCAMLFIND_DESTDIR)
	$(MAKE) $(MAKE_EXTRA_VARS) $(INSTALL_TARGET)
ifneq ($(findstring libtyxml-ocaml-doc,$(shell dh_listpackages)),)
	$(MAKE) $(MAKE_EXTRA_VARS) doc
endif

.PHONY: override_dh_install
override_dh_install:
	dh_install --fail-missing