File: rules

package info (click to toggle)
imgsizer 2.10-0.2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 192 kB
  • sloc: python: 181; xml: 148; makefile: 70
file content (42 lines) | stat: -rwxr-xr-x 638 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
#!/usr/bin/make -f

package=imgsizer

build:

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp

	dh_clean

install:
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs usr/bin
	install -m 755 imgsizer debian/imgsizer/usr/bin

binary-arch:

binary-indep: install
	dh_testdir
	dh_testroot
	dh_installdocs README
	dh_installmanpages
	dh_installchangelogs
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

build-arch: build
build-indep: build
binary: binary-arch binary-indep
.PHONY: build build-arch build-indep clean install binary-indep binary-arch binary