File: rules

package info (click to toggle)
libclass-data-accessor-perl 0.04004-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 192 kB
  • ctags: 132
  • sloc: perl: 1,833; makefile: 19
file content (27 lines) | stat: -rwxr-xr-x 465 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
#!/usr/bin/make -f

build: build-stamp
build-stamp:
	dh build --before test
	TEST_AUTHOR=1 $(MAKE) test
	dh build --after test
	touch $@

clean:
	dh $@

install: install-stamp
install-stamp: build-stamp
	dh install --before dh_installchangelogs
	dh_installchangelogs Changes
	dh install --after dh_installchangelogs
	touch $@

binary-arch:

binary-indep: install
	dh $@

binary: binary-arch binary-indep

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