File: rules

package info (click to toggle)
teseq 1.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 1,748 kB
  • ctags: 330
  • sloc: ansic: 3,498; sh: 1,461; perl: 236; makefile: 62
file content (30 lines) | stat: -rwxr-xr-x 555 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
28
29
30
#!/usr/bin/make -f
# -*- makefile -*-

override_dh_auto_configure:
	autoreconf --install
	dh_auto_configure

override_dh_installman:
	rm -f doc/teseq.1 doc/reseq.1
	make doc/teseq.1 doc/reseq.1
	dh_installman

build: build-stamp
build-stamp:
	dh build
	touch build-stamp

clean:
	[ ! -f Makefile ] || make maintainer-clean
	rm -f Makefile.in aclocal.m4 src/config.h.in configure
	dh clean

install: build
	dh install

binary-arch: build install
	dh binary-arch

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