File: rules

package info (click to toggle)
pmp-common 2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 44 kB
  • sloc: makefile: 25; sh: 7
file content (30 lines) | stat: -rwxr-xr-x 591 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

clean:
	dh_testdir
	dh_testroot
	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs
	install -D -m 644 ifpdev.usermap $(CURDIR)/debian/pmp-common/etc/hotplug/usb/ifpdev.usermap
	install -D -m 755 ifpdev $(CURDIR)/debian/pmp-common/etc/hotplug/usb/ifpdev

binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs 
	dh_installdocs
	dh_link
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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