File: rules

package info (click to toggle)
makepasswd 1.10-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 68 kB
  • ctags: 12
  • sloc: perl: 480; makefile: 28
file content (38 lines) | stat: -rwxr-xr-x 740 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
#!/usr/bin/make -f
# -*- makefile -*- made with the aid of debmake, by Christoph Lameter,
# based on the sample debian/rules file for GNU hello by Ian Jackson.

SHELL = /bin/bash

build: 

clean:
	dh_testdir
	rm -rf build $$(find . -name "*~") $$(find debian/* -type d)
	rm -rf debian/files* core debian/*substvars*
	dh_clean

binary-indep: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs
	dh_installdocs README
	dh_installchangelogs CHANGES
	dh_installmanpages
	install makepasswd debian/tmp/usr/bin/makepasswd
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_perl
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch:

binary:		binary-indep binary-arch

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