File: rules

package info (click to toggle)
tircd 0.10-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 144 kB
  • ctags: 45
  • sloc: perl: 1,139; makefile: 19
file content (27 lines) | stat: -rwxr-xr-x 479 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
	touch $@

clean:
	dh $@

install: install-stamp
install-stamp: build-stamp
	dh install
	install -m 644 tircd.cfg.example debian/tircd/etc/tircd.cfg
	install tircd.pl debian/tircd/usr/bin/tircd
	pod2man tircd.pod > debian/tircd/usr/share/man/man1/tircd.1
	dh_compress
	touch $@

binary-arch:

binary-indep: install
	dh $@

binary: binary-arch binary-indep

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