5c607a39aec17e2177912af0ebd0f2f7598490ad
[livewp] / applet / 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
13 # These are used for cross-compiling and for saving the configure script
14 # from having to guess our platform (since we know it already)
15 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
18
19 CFLAGS = -Wall -g
20
21 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
22         CFLAGS += -O0
23 else
24         CFLAGS += -O2
25 endif
26
27 config.status: configure
28         dh_testdir
29         # Add here commands to configure the package.
30         ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" 
31
32
33 build: build-stamp
34
35 build-stamp:  config.status
36         dh_testdir
37
38
39         touch $@
40
41 clean:
42         dh_testdir
43         dh_testroot
44         rm -f build-stamp 
45
46         # Add here commands to clean up after the build process.
47         -$(MAKE) distclean
48 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
49         cp -f /usr/share/misc/config.sub config.sub
50 endif
51 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
52         cp -f /usr/share/misc/config.guess config.guess
53 endif
54
55
56         dh_clean 
57
58 install: build
59         dh_testdir
60         dh_testroot
61         dh_clean -k 
62         dh_installdirs
63
64         # Add here commands to install the package into debian/hildon-timeout-home-widget-example.
65         $(MAKE) DESTDIR=$(CURDIR)/debian/live-wallpaper install
66
67
68 # Build architecture-independent files here.
69 binary-indep: build install
70 # We have nothing to do by default.
71
72 # Build architecture-dependent files here.
73 binary-arch: build install
74         dh_testdir
75         dh_testroot
76         dh_installchangelogs ChangeLog
77         dh_installdocs
78         dh_installexamples
79 #       dh_install
80 #       dh_installmenu
81 #       dh_installdebconf       
82 #       dh_installlogrotate
83 #       dh_installemacsen
84 #       dh_installpam
85 #       dh_installmime
86 #       dh_python
87 #       dh_installinit
88 #       dh_installcron
89 #       dh_installinfo
90         dh_installman
91         dh_link
92         dh_strip
93         dh_compress
94         dh_fixperms
95 #       dh_perl
96 #       dh_makeshlibs
97         dh_installdeb
98         dh_shlibdeps
99         dh_gencontrol
100         maemo-optify
101         dh_md5sums
102         dh_builddeb
103
104 binary: binary-indep binary-arch
105 .PHONY: build clean binary-indep binary-arch binary install