chiark / gitweb /
debian/changelog: finalise 0.3.1-1+iwj3
[xf86-input-mtrack.git] / debian.upstream / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3
4 # Uncomment this to turn on verbose mode.
5 #export DH_VERBOSE=1
6
7 build-arch:
8         dh_testdir
9         $(MAKE)
10
11 build-indep:
12
13 build: build-arch build-indep
14
15 install:
16         dh_testdir
17         dh_testroot
18         dh_clean -k
19         dh_installdirs
20         $(MAKE) DESTDIR=$(CURDIR)/debian/xserver-xorg-input-mtrack install
21
22 binary-arch: build-arch install
23         dh_testdir
24         dh_testroot
25         dh_link
26         dh_strip
27         dh_compress
28         dh_fixperms
29         dh_installdeb
30         dh_shlibdeps
31         dh_gencontrol
32         dh_md5sums
33         dh_builddeb
34
35 binary-indep: build-indep
36
37 binary: binary-arch binary-indep
38
39 clean:
40         dh_testdir
41         dh_testroot
42         $(MAKE) clean
43         dh_clean
44
45 .PHONY: build-arch build-indep build install binary-arch binary-indep binary clean
46