]> git.llucax.com Git - software/sadba.git/blob - debian/rules
185125ae79ab424e71425f77aa468ce5d9a51182
[software/sadba.git] / debian / rules
1 #!/usr/bin/make -f
2 # Uncomment this to turn on verbose mode.
3 # export DH_VERBOSE=1
4
5 build: build-stamp
6
7 build-stamp:
8         dh_testdir
9         $(MAKE)
10         touch build-stamp
11
12 clean:
13         dh_testdir
14         dh_testroot
15         $(MAKE) clean
16         rm -f build-stamp install-stamp
17         # Add here commands to clean up after the build process.
18         dh_clean
19
20 install: install-stamp
21 install-stamp: build-stamp
22         dh_testdir
23         dh_testroot
24         dh_clean -k
25         dh_installdirs
26         $(MAKE) DESTDIR=$(CURDIR)/debian/status-area-displayblanking-applet install
27
28         touch install-stamp
29
30 # Build architecture-independent files here.
31 binary-indep: build install
32         dh_testdir
33         dh_testroot
34         dh_install
35         #dh_installdocs
36         #dh_installchangelogs
37         #dh_compress
38         dh_fixperms
39         dh_shlibdeps
40         dh_makeshlibs
41         dh_installdeb
42         dh_gencontrol
43         dh_md5sums
44         dh_builddeb
45
46 binary-arch:
47
48 binary: binary-indep
49 .PHONY: build clean binary-arch binary-indep binary install