File: rules

package info (click to toggle)
memtester 4.3.0-4
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 244 kB
  • ctags: 80
  • sloc: ansic: 877; sh: 144; makefile: 117
file content (23 lines) | stat: -rwxr-xr-x 412 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
#!/usr/bin/make -f
# -*- makefile -*-

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

DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)

ifeq ($(origin CC),default)
CC = $(DEB_HOST_GNU_TYPE)-gcc
endif
export CC

override_dh_auto_install:
	# disabled

override_dh_builddeb:
	dh_builddeb -- -Zxz -z9

%:
	dh ${@} --parallel

.PHONY: override_dh_auto_install override_dh_builddeb