3adfc4c98dd1f5f13f2d29bfd5ee5ce3cb9957a6
[confmgr] / 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 APPNAME := confmgr
13
14 builddir:
15         mkdir -p builddir
16
17 builddir/Makefile: builddir
18         cd builddir && qmake-qt4 PREFIX=/usr ../$(APPNAME).pro
19
20 CFLAGS = -Wall -g
21
22 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
23         CFLAGS += -O0
24 else
25         CFLAGS += -O2
26 endif
27
28 configure: configure-stamp
29 configure-stamp:
30         dh_testdir
31         # Add here commands to configure the package.
32         qmake confmgr.pro
33
34         touch configure-stamp
35
36
37 build: build-stamp
38
39 build-stamp: builddir/Makefile 
40         dh_testdir
41
42         # Add here commands to compile the package.
43         cd builddir && $(MAKE)
44         #docbook-to-man debian/confmgr.sgml > confmgr.1
45
46         touch $@
47
48 clean:
49         dh_testdir
50         dh_testroot
51         rm -f build-stamp
52
53         # Add here commands to clean up after the build process.
54         rm -rf builddir
55         dh_clean 
56
57 install: build
58         dh_testdir
59         dh_testroot
60         dh_clean -k 
61         dh_installdirs
62
63         # Add here commands to install the package into debian/confmgr.
64         cd builddir && $(MAKE) INSTALL_ROOT=$(CURDIR)/debian/$(APPNAME) install
65
66 # Build architecture-independent files here.
67 binary-indep: build install
68 # We have nothing to do by default.
69
70 # Build architecture-dependent files here.
71 binary-arch: build install
72         dh_testdir
73         dh_testroot
74         dh_installchangelogs 
75         dh_installdocs
76         dh_installexamples
77         dh_install
78 #       dh_installmenu
79 #       dh_installdebconf       
80 #       dh_installlogrotate
81 #       dh_installemacsen
82 #       dh_installpam
83 #       dh_installmime
84 #       dh_python
85 #       dh_installinit
86 #       dh_installcron
87 #       dh_installinfo
88         dh_installman
89         dh_link
90         dh_strip --dbg-package=confmgr-dbg
91         dh_compress
92         dh_fixperms
93 #       dh_perl
94 #       dh_makeshlibs
95         dh_installdeb
96         dh_shlibdeps
97         dh_gencontrol
98         dh_md5sums
99         dh_builddeb
100
101 binary: binary-indep binary-arch
102 .PHONY: build clean binary-indep binary-arch binary install configure