File: rules

package info (click to toggle)
globjects 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,924 kB
  • ctags: 15,216
  • sloc: cpp: 60,349; python: 6,620; sh: 596; makefile: 493
file content (33 lines) | stat: -rwxr-xr-x 808 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
#!/usr/bin/make -f

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

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# Possible overlinkage in the library.
export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

BUILD_OPTIONS = -DBUILD_SHARED_LIBS=ON \
		-DOPTION_SELF_CONTAINED=OFF \
		-DOPTION_BUILD_EXAMPLES=OFF \
		-DOPTION_ERRORS_AS_EXCEPTION=OFF

ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
BUILD_OPTIONS += -DOPTION_BUILD_TESTS=ON
else
BUILD_OPTIONS += -DOPTION_BUILD_TESTS=OFF
endif

%:
	dh $@ --buildsystem=cmake

override_dh_auto_configure-arch:
	dh_auto_configure -- $(BUILD_OPTIONS) -DOPTION_BUILD_DOCS=OFF

override_dh_auto_configure-indep:
	dh_auto_configure -- $(BUILD_OPTIONS) -DOPTION_BUILD_DOCS=ON

override_dh_installdocs-indep:
	dh_installdocs --indep
	dh_doxygen --indep