File: rules

package info (click to toggle)
bullet 3.06%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 15,012 kB
  • sloc: cpp: 243,705; lisp: 12,017; ansic: 11,175; python: 626; makefile: 133; sh: 75
file content (64 lines) | stat: -rwxr-xr-x 1,768 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/make -f
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@ --buildsystem=cmake

CONFIGURE_FLAGS := \
		-DBUILD_SHARED_LIBS=on \
		-DBUILD_EXTRAS=on \
		-DBUILD_BULLET2_DEMOS=off \
		-DBUILD_OPENGL3_DEMOS=off \
		-DBUILD_CPU_DEMOS=off \
		-DBUILD_UNIT_TESTS=off \
		-DINSTALL_LIBS=on \
		-DINSTALL_EXTRA_LIBS=on \
		-DCMAKE_BUILD_TYPE=RelWithDebInfo \
		-DLIB_SUFFIX=/$(DEB_HOST_MULTIARCH)

override_dh_auto_configure:
	dh_auto_configure -Bbuild-float32 -- \
                -DUSE_DOUBLE_PRECISION=off \
                $(CONFIGURE_FLAGS)
	dh_auto_configure -Bbuild-float64 -- \
                -DUSE_DOUBLE_PRECISION=on \
                $(CONFIGURE_FLAGS)

override_dh_auto_build-arch:
	dh_auto_build -Bbuild-float32
	dh_auto_build -Bbuild-float64
override_dh_auto_test:
	dh_auto_test -Bbuild-float32
	dh_auto_test -Bbuild-float64

# Libraries are namespaced, and headers are identical, so install everything to
# the same place
override_dh_auto_install-arch:
	dh_auto_install -Bbuild-float32
	dh_auto_install -Bbuild-float64

override_dh_auto_install-indep:
	# Let dh_install handle the installation of documentation files. Do not run
	# dh_auto_install to prevent a FTBFS because we don't build any
	# libraries here.

override_dh_auto_build-indep:
	# Build the documentation without TIMESTAMPS and make the build
	# reproducible
	( cat Doxyfile ; echo "HTML_TIMESTAMP=NO" ) | doxygen -
	$(RM) -v html/*.md5 html/*.map
	# De-duplication (http://wiki.debian.org/dedup.debian.net):
	rdfind -outputname /dev/null -makesymlinks true html
	symlinks -rsc html

override_dh_compress:
	dh_compress --exclude=.pdf

override_dh_clean:
	dh_clean
	$(RM) doxygen_sqlite3.db
	$(RM) -r html
	$(RM) -r build-float32
	$(RM) -r build-float64