sync with master, change mkfs path
[framework/appfw/app2sd.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 CFLAGS += -fvisibility=hidden -fPIC
39 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
40
41 CMAKE_TMP_DIR = $(CURDIR)/cmake_tmp
42
43 config.status:
44
45 configure: configure-stamp
46
47 configure-stamp:
48         dh_testdir
49         mkdir -p $(CMAKE_TMP_DIR);
50         export LD_LIBRARY_PATH=$(LD_LIBRARY_PATH):$(CMAKE_TMP_DIR) && cd $(CMAKE_TMP_DIR); CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX=$(PREFIX)
51         touch configure-stamp
52
53 build: build-stamp
54
55 build-stamp: configure-stamp
56         dh_testdir
57         # Add here commands to compile the package.
58         cd $(CMAKE_TMP_DIR) && $(MAKE) all
59
60         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
61                 cat $$f > $${f%.in}; \
62                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
63                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
64         done
65
66         touch $@
67
68 clean:
69         dh_testdir
70         dh_testroot
71         rm -f *-stamp
72
73         rm -rf $(CMAKE_TMP_DIR)
74
75         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
76                 rm -f $${f%.in}; \
77         done
78
79         dh_clean
80
81 install: build
82         dh_testdir
83         dh_testroot
84         dh_clean -k
85         dh_installdirs
86
87         # Add here commands to install the package into debian/ncurses.
88         cd $(CMAKE_TMP_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
89
90 # Build architecture-independent files here.
91 binary-indep: build install
92 # We have nothing to do by default.
93
94 # Build architecture-dependent files here.
95 binary-arch: build install
96         dh_testdir
97         dh_testroot
98         dh_installchangelogs
99 #       dh_installdocs
100         dh_installexamples
101         dh_install --list-missing --sourcedir=debian/tmp
102 #       dh_installmenu
103 #       dh_installdebconf
104 #       dh_installlogrotate
105 #       dh_installemacsen
106 #       dh_installpam
107 #       dh_installmime
108 #       dh_python
109 #       dh_installinit
110 #       dh_installcron
111 #       dh_installinfo
112         dh_installman
113         dh_link
114         dh_strip --dbg-package=app2sd-dbg
115         dh_compress
116         dh_fixperms
117 #       dh_perl
118         dh_makeshlibs
119         dh_installdeb
120         dh_shlibdeps
121         dh_gencontrol
122         dh_md5sums
123         dh_builddeb
124
125 binary: binary-indep binary-arch
126 .PHONY: build clean binary-indep binary-arch binary install