File: rules

package info (click to toggle)
hobbit-plugins 20080705
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 160 kB
  • ctags: 26
  • sloc: perl: 804; sh: 38; makefile: 35
file content (26 lines) | stat: -rwxr-xr-x 407 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
#!/usr/bin/make -f

build-arch:
build build-indep:

install:
	dh_testdir
	dh_testroot
	dh_clean -k
	make install DESTDIR=debian/hobbit-plugins

binary-arch:
binary binary-indep: install
	dh_installdocs
	dh_installchangelogs
	dh_fixperms
	dh_compress
	dh_md5sums
	dh_installdeb
	dh_gencontrol
	dh_builddeb

clean:
	dh_clean

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