]> git.decadent.org.uk Git - emusic-remote.git/blob - debian/rules
[svn-inject] Applying Debian modifications to trunk
[emusic-remote.git] / debian / rules
1 #!/usr/bin/make -f
2
3 build: build-stamp
4 build-stamp:
5         touch $@
6
7 clean:
8         dh_testdir
9         dh_testroot
10         rm -f build-stamp
11         dh_clean 
12
13 install: build
14         dh_testdir
15         dh_testroot
16         dh_clean -k 
17         #dh_installdirs
18
19 # Build architecture-independent files here.
20 binary-indep: install
21         dh_testdir
22         dh_testroot
23         dh_installchangelogs 
24         dh_installdocs
25         dh_install
26         dh_installmenu
27         dh_installman
28         dh_compress
29         dh_fixperms
30         dh_installdeb
31         dh_gencontrol
32         dh_md5sums
33         dh_builddeb
34
35 # Build architecture-dependent files here.
36 binary-arch:
37
38 binary: binary-indep binary-arch
39 .PHONY: build clean binary-indep binary-arch binary install