bump version to 0.6 for release
[mevemon] / package / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 CFLAGS = -Wall -g
13
14 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
15         CFLAGS += -O0
16 else
17         CFLAGS += -O2
18 endif
19
20 configure: configure-stamp
21 configure-stamp:
22         dh_testdir
23         # Add here commands to configure the package.
24
25         touch configure-stamp
26
27 build: build-stamp
28
29 build-stamp: configure-stamp
30         dh_testdir
31         
32         # Add here commands to compile the package
33         $(MAKE) compile
34         
35         touch build-stamp
36
37 clean:
38         dh_testdir
39         dh_testroot
40         rm -f build-stamp configure-stamp
41         
42         ${MAKE} clean
43         
44         dh_clean
45
46 install: build
47         dh_testdir
48         dh_testroot
49         dh_clean -k
50         dh_installdirs
51         ${MAKE} DESTDIR=${CURDIR}/debian/mevemon install
52
53 # Build architecture-independent files here.
54 binary-indep: build install
55 # We have nothing to do by default.
56
57 # Build architecture-dependent files here.
58 binary-arch: build install
59         dh_testdir
60         dh_testroot
61         dh_installchangelogs debian/changelog
62         dh_installdocs
63         dh_installexamples
64 #       dh_install
65 #       dh_installmenu
66 #       dh_installdebconf
67 #       dh_installlogrotate
68 #       dh_installemacsen
69 #       dh_installpam
70 #       dh_installmime
71 #       dh_python
72 #       dh_installinit
73 #       dh_installcron
74 #       dh_installinfo
75 #       dh_installman
76         dh_link
77         dh_strip
78         dh_compress
79         dh_fixperms
80 #       dh_perl
81 #       dh_makeshlibs
82         dh_installdeb
83         dh_shlibdeps
84         dh_gencontrol
85         dh_md5sums
86         dh_builddeb
87
88 binary: binary-indep binary-arch
89 .PHONY: build clean binary-indep binary-arch binary install configure