Git init
[framework/appfw/alarm-manager.git] / 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_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
16 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
17 DEB_HOST_ARCH       ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
18 DEB_HOST_ARCH_OS    ?= $(shell dpkg-architecture -qDEB_HOST_GNU_OS)
19
20 CFLAGS ?= -Wall -g
21 LDFLAGS ?= 
22 PREFIX ?= /usr
23 DATADIR ?= /opt
24
25 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
26         CFLAGS += -O0
27 else
28         CFLAGS += -O2
29 endif
30
31 # architecture is not arm
32 ifneq (, $(findstring arm, $(DEB_HOST_ARCH)))
33         # do something here
34 else
35         # do something here for arm
36 endif
37
38 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
39
40
41 config.status: 
42         ./autogen.sh
43         #configure
44         dh_testdir
45         dbus-binding-tool --mode=glib-server --prefix=alarm_manager ./alarm_mgr.xml > ./include/alarm-skeleton.h
46         dbus-binding-tool --mode=glib-client --prefix=alarm_manager ./alarm_mgr.xml > ./include/alarm-stub.h
47         dbus-binding-tool --mode=glib-server --prefix=alarm_client ./alarm-expire.xml > ./include/alarm-expire-skeleton.h
48         dbus-binding-tool --mode=glib-client --prefix=alarm_client ./alarm-expire.xml > ./include/alarm-expire-stub.h
49
50         # Add here commands to configure the package.
51         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=$(PREFIX) 
52
53 #configure:
54 #       ./autogen.sh
55
56 build: build-stamp
57
58 build-stamp:  config.status
59         dh_testdir
60         # Add here commands to compile the package.
61         $(MAKE)
62         #docbook-to-man debian/ncurses.sgml > ncurses.1
63
64         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
65                 cat $$f > $${f%.in}; \
66                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
67                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
68         done
69
70         touch $@
71
72 clean:
73         dh_testdir
74         dh_testroot
75         rm -f build-stamp 
76         
77         -$(MAKE) clean
78         # Add here commands to clean up after the build process.
79         -$(MAKE) distclean
80 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
81         cp -f /usr/share/misc/config.sub config.sub
82 endif
83 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
84         cp -f /usr/share/misc/config.guess config.guess
85 endif
86
87         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
88                 rm -f $${f%.in}; \
89         done
90         
91         touch Makefile.in aclocal.m4 config.hin configure include/alarm-expire-skeleton.h include/alarm-skeleton.h include/alarm-expire-stub.h include/alarm-stub.h
92         rm Makefile.in aclocal.m4 config.hin configure include/alarm-expire-skeleton.h include/alarm-skeleton.h include/alarm-expire-stub.h include/alarm-stub.h
93
94         dh_clean 
95
96 install: build
97         dh_testdir
98         dh_testroot
99         dh_clean -k 
100         dh_installdirs
101
102         # Add here commands to install the package into debian/ncurses.
103         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
104
105
106         mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/init.d
107         mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc3.d
108         mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc5.d
109         cp $(CURDIR)/alarm-server_run $(CURDIR)/debian/tmp/etc/rc.d/init.d
110         ln -s ../init.d/alarm-server_run $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/S80alarm-server
111         ln -s ../init.d/alarm-server_run $(CURDIR)/debian/tmp/etc/rc.d/rc5.d/S80alarm-server
112
113 # Build architecture-independent files here.
114 binary-indep: build install
115 # We have nothing to do by default.
116
117 # Build architecture-dependent files here.
118 binary-arch: build install
119         dh_testdir
120         dh_testroot
121         dh_installchangelogs 
122         dh_installdocs
123         dh_installexamples
124         dh_install --list-missing --sourcedir=debian/tmp
125 #       dh_installmenu
126 #       dh_installdebconf       
127 #       dh_installlogrotate
128 #       dh_installemacsen
129 #       dh_installpam
130 #       dh_installmime
131 #       dh_python
132 #       dh_installinit
133 #       dh_installcron
134 #       dh_installinfo
135         dh_installman
136         dh_link
137         dh_strip --dbg-package=alarm-manager-dbg
138         dh_compress
139         dh_fixperms
140 #       dh_perl
141         dh_makeshlibs
142         dh_installdeb
143         dh_shlibdeps
144         dh_gencontrol
145         dh_md5sums
146         dh_builddeb
147
148 binary: binary-indep binary-arch
149 .PHONY: build clean binary-indep binary-arch binary install