File: rules

package info (click to toggle)
libfile-finder-perl 0.53-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 132 kB
  • ctags: 50
  • sloc: perl: 985; makefile: 17; sh: 3
file content (25 lines) | stat: -rwxr-xr-x 365 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
#!/usr/bin/make -f

build: build-stamp
build-stamp:
	dh build --before test
	$(MAKE) test TEST_VERBOSE=1
	dh build --after test
	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