File: rules

package info (click to toggle)
fake-hwclock 0.12%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 92 kB
  • sloc: sh: 97; makefile: 34
file content (43 lines) | stat: -rwxr-xr-x 661 bytes parent folder | download | duplicates (4)
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
43
#!/usr/bin/make -f
package = fake-hwclock

clean:
	dh_testdir
	dh_clean
	find . -name '*~' | xargs rm -vf

build-arch:
build-indep:
build:

install:
	dh_testdir
	dh_testroot
	dh_prep
	dh_install

binary: binary-indep binary-arch

# Nothing to do here
binary-arch:

binary-indep: install
	dh_testdir
	dh_testroot
	dh_installdebconf
	dh_installchangelogs
	dh_installdocs
	dh_installcron
	dh_systemd_enable
	dh_installinit --no-start -- start 02 S . stop 02 0 1 6 .
	dh_systemd_start
	dh_installman
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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