File: rules

package info (click to toggle)
hotspot 1.6.0-0.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,756 kB
  • sloc: cpp: 27,071; ansic: 281; sh: 261; python: 75; xml: 48; makefile: 16
file content (24 lines) | stat: -rwxr-xr-x 664 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
#!/usr/bin/make -f
# You must remove unused comment lines for the released package.
export DH_VERBOSE = 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- -DQT6_BUILD=ON

execute_before_dh_auto_configure:
	ln -sf ../perfparser 3rdparty/perfparser
	ln -sf ../PrefixTickLabels 3rdparty/PrefixTickLabels

execute_before_dh_clean:
	rm -rf 3rdparty/perfparser
	rm -rf 3rdparty/PrefixTickLabels

override_dh_auto_test:
	# Skip tests that need unavailable rustc_demangle and d_demangle
	dh_auto_test -- \
		ARGS\+="-E 'tst_perfdata|tst_models|tst_perfparser'"