projects
/
fake-hwclock.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use dh_install
[fake-hwclock.git]
/
debian
/
rules
1
#!/usr/bin/make -f
2
package = fake-hwclock
3
4
clean:
5
dh_testdir
6
dh_clean
7
find . -name '*~' | xargs rm -vf
8
9
build-arch:
10
build-indep:
11
build:
12
13
install:
14
dh_testdir
15
dh_testroot
16
dh_prep
17
dh_install
18
19
binary: binary-indep binary-arch
20
21
# Nothing to do here
22
binary-arch:
23
24
binary-indep: install
25
dh_testdir
26
dh_testroot
27
dh_installdebconf
28
dh_installchangelogs
29
dh_installdocs
30
dh_installcron
31
dh_installinit --no-start -- start 02 S . stop 02 0 1 6 .
32
dh_compress
33
dh_fixperms
34
dh_installdeb
35
dh_shlibdeps
36
dh_gencontrol
37
dh_md5sums
38
dh_builddeb
39
40
.PHONY: binary binary-arch binary-indep build-arch build-indep clean