]> git.decadent.org.uk Git - emusic-remote.git/blob - debian/rules
Removed executable permission from non-executable files.
[emusic-remote.git] / debian / rules
1 #!/usr/bin/make -f
2
3 build:
4
5 clean:
6         dh_testdir
7         dh_testroot
8         rm -f build-stamp
9         dh_clean 
10
11 install: build
12         dh_testdir
13         dh_testroot
14         dh_clean -k 
15         dh_install
16         find debian/emusic-remote/usr/share/emusic-remote -type f \
17         | xargs chmod -x
18
19 binary-indep: install
20         dh_testdir
21         dh_testroot
22         dh_installchangelogs 
23         dh_installdocs
24         dh_installmenu
25         dh_compress
26         dh_fixperms
27         dh_installdeb
28         dh_gencontrol
29         dh_md5sums
30         dh_builddeb
31
32 binary-arch:
33
34 binary: binary-indep binary-arch
35 .PHONY: build clean binary-indep binary-arch binary install