File: rules

package info (click to toggle)
libtest-signature-perl 1.10-1%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 168 kB
  • ctags: 92
  • sloc: perl: 917; makefile: 18
file content (27 lines) | stat: -rwxr-xr-x 450 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
#!/usr/bin/make -f

TEST_FILES=	$(filter-out t/0-signature.t,$(shell echo t/*.t))

build: build-stamp
build-stamp:
	dh build --before dh_auto_test
	dh_auto_test -- TEST_FILES="$(TEST_FILES)"
	dh build --remaining
	touch $@

clean:
	dh $@

install: install-stamp
install-stamp: build-stamp
	dh install
	touch $@

binary-arch:

binary-indep: install
	dh $@

binary: binary-arch binary-indep

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