File: rules

package info (click to toggle)
cil 0.07.00-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 840 kB
  • sloc: perl: 2,094; makefile: 53
file content (53 lines) | stat: -rwxr-xr-x 1,038 bytes parent folder | download | duplicates (13)
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
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/make -f
## ----------------------------------------------------------------------------

## ----------------------------------------------------------------------------
## uncomment this to turn on verbose mode

# export DH_VERBOSE=1

## ----------------------------------------------------------------------------

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp
	[ ! -f Makefile ] || $(MAKE) clean
	rm -f $(CURDIR)/cil.1
	dh_clean

build:	build-stamp
build-stamp:
	dh_testdir
	[ ! -f Makefile ] || $(MAKE)
	echo Doing MAN...
	pod2man $(CURDIR)/bin/cil > $(CURDIR)/cil.1
	touch build-stamp

binary:
	dh_testdir
	dh_testroot

	dh_install
	dh_installdirs
	dh_installdocs
	dh_installdebconf
	dh_installman
	dh_installchangelogs Changes
	dh_compress
	dh_fixperms
	dh_installdeb

	dh_perl

	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch:

binary:	binary-indep binary-arch

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

## ----------------------------------------------------------------------------