File: rules

package info (click to toggle)
libdebug-client-perl 0.29-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 352 kB
  • ctags: 168
  • sloc: perl: 2,653; makefile: 10
file content (16 lines) | stat: -rwxr-xr-x 317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f

BUILDHOME = $(CURDIR)/debian/build

TEST_FILES = $(filter-out t/00-check-deps.t t/01-compile.t,$(shell echo t/*.t))

%:
	dh $@

override_dh_clean:
	dh_clean
	rm -rf $(BUILDHOME)

override_dh_auto_test:
	mkdir -p $(BUILDHOME)
	TERM=dumb HOME=$(BUILDHOME) dh_auto_test -- TEST_FILES="$(TEST_FILES)"