File: rules

package info (click to toggle)
libtest-distribution-perl 2.00-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 108 kB
  • ctags: 38
  • sloc: perl: 252; makefile: 18
file content (26 lines) | stat: -rwxr-xr-x 443 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
#!/usr/bin/make -f

build: build-stamp
build-stamp:
	dh build
	pod2text $(CURDIR)/Changes.pod > $(CURDIR)/Changes.txt
	touch $@

clean:
	dh $@

install: install-stamp
install-stamp: build-stamp
	dh install --before dh_installchangelogs
	dh_installchangelogs Changes.txt
	dh install --remaining
	touch $@

binary-arch:

binary-indep: install
	dh $@

binary: binary-arch binary-indep

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