File: rules

package info (click to toggle)
pidgin-openpgp 0.1-2
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 64 kB
  • ctags: 25
  • sloc: perl: 405; makefile: 23
file content (30 lines) | stat: -rwxr-xr-x 506 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
#!/usr/bin/make -f

LC_ALL:=C
export LC_ALL

clean:
	dh_testdir
	dh_clean

build build-arch build-indep:

binary-indep: build-indep
	dh_testdir
	dh_testroot
	if test -x "$$(which dh_prep)"; then dh_prep; else dh_clean -k; fi
	dh_installdirs
	dh_installchangelogs
	dh_installdocs
	dh_install
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch: build-arch

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