File: rules

package info (click to toggle)
cc65 2.19-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 20,272 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,008; perl: 607
file content (20 lines) | stat: -rwxr-xr-x 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
# -*- makefile -*-

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

include /usr/share/dpkg/pkg-info.mk
include /usr/share/dpkg/vendor.mk

override_dh_auto_build:
	dh_auto_build -- PREFIX=/usr PKG_VERSION="$(DEB_VENDOR) $(DEB_VERSION)"
	$(MAKE) -C doc html

override_dh_auto_install:
	dh_auto_install -- PREFIX=/usr

%:
	dh $@ --no-parallel

.PHONY: override_dh_auto_build override_dh_auto_install