tizen beta release
[platform/framework/web/wrt.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_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17 PACKAGE_VERSION ?= $(shell sed -n "1 p" debian/changelog | sed 's/.*(\(.*\)).*/\1/')
18 PACKAGE_API_VERSION ?= $(shell sed -n "1 p" debian/changelog | sed "s/.*([0-9]*.\([0-9]*\).*).*/\1/" )
19
20 PREFIX ?= /usr
21 DATADIR ?= /opt
22 LDFLAGS = -Wl,--rpath=$(PREFIX)/lib
23 # Please set CFLAGS only in CMakeLists.txt, as they are dependent on CMake build type.
24
25
26 ifeq (,$(findstring no,$(DPL_LOG)))
27         DPL_LOGS_STATUS = "ON"
28 else
29         DPL_LOGS_STATUS = "OFF"
30 endif
31
32 ifeq (1,$(WRT_SKIP_ACE_SUPPORT))
33     WRT_SKIP_ACE = "ON"
34 else
35     WRT_SKIP_ACE = "OFF"
36 endif
37
38 ifeq (1,$(WRT_SMACK_ENABLE))
39     SMACK_STATUS = "ON"
40 else
41     SMACK_STATUS = "OFF"
42 endif
43
44 #for building with:
45 #efl library, use TARGET=X1
46 export TARGET=X1
47
48 CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
49
50 #config.status: configure
51 config.status:
52         dh_testdir
53         # Add here commands to configure the package.
54         mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && \
55         cmake ${SRCDIR} -DBUILD_TYPE="${TARGET}" -DCMAKE_INSTALL_PREFIX="${PREFIX}" -DCMAKE_BUILD_TYPE="$(BUILD_TYPE)" -DDPL_LOG=$(DPL_LOGS_STATUS) -DSMACK_ENABLED=${SMACK_STATUS} -DCMAKE_PACKAGE_API_VERSION="$(PACKAGE_API_VERSION)" -DWRT_SKIP_ACE_SUPPORT="${WRT_SKIP_ACE}" -DUG_INSTALL_PREFIX="${DATADIR}" -DCMAKE_PACKAGE_VERSION="${PACKAGE_VERSION}" ..
56
57 build: build-stamp
58
59 build-stamp:  config.status
60         dh_testdir
61         # Add here commands to compile the package.
62         cd $(CMAKE_BUILD_DIR) && $(MAKE) -j 4
63         #docbook-to-man debian/ncurses.sgml > ncurses.1
64
65         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
66                 cat $$f > $${f%.in}; \
67                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
68                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
69         done
70
71         for f in `find $(CURDIR)/pkgconfigs/ -name "*.in"`; do \
72                 cat $$f > $${f%.in}; \
73         sed -i -e "s#@VERSION@#$(PACKAGE_VERSION)#g" $${f%.in}; \
74         done
75
76         touch $@
77
78 clean:
79         dh_testdir
80         dh_testroot
81         rm -f build-stamp
82
83         # Add here commands to clean up after the build process.
84         -find . -name CMakeFiles -exec rm -rf {} \;
85         -find . -name cmake_install.cmake -exec rm {} \;
86         #-find . -name Makefile -exec rm {} \;
87         rm CMakeCache.txt -rf
88         #-$(MAKE) distclean
89         rm -rf $(CMAKE_BUILD_DIR)
90         rm -rf autotools
91         rm -rf aclocal.m4
92         rm -rf configure
93         rm -rf Makefile
94         rm -rf Makefile.in
95         rm -rf m4
96         rm -rf libtool
97         rm -rf build/config.*
98         rm -rf build/depcomp
99         rm -rf build/install-sh
100         rm -rf build/ltmain.sh
101         rm -rf build/missing
102
103 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
104         cp -f /usr/share/misc/config.sub config.sub
105 endif
106 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
107         cp -f /usr/share/misc/config.guess config.guess
108 endif
109
110         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
111                 rm -f $${f%.in}; \
112         done
113
114         rm -rf config.*
115         dh_clean
116
117 install: build
118         dh_testdir
119         dh_testroot
120         dh_clean -k
121         dh_installdirs
122
123         # Add here commands to install the package into debian/ncurses.
124         cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
125
126
127 # Build architecture-independent files here.
128 binary-indep: build install
129 # We have nothing to do by default.
130
131 # Build architecture-dependent files here.
132 binary-arch: build install
133         dh_testdir
134         dh_testroot
135         dh_installchangelogs
136         dh_installdocs
137         dh_installexamples
138         dh_install --sourcedir=debian/tmp
139 #       dh_installmenu
140 #       dh_installdebconf
141 #       dh_installlogrotate
142 #       dh_installemacsen
143 #       dh_installpam
144 #       dh_installmime
145 #       dh_python
146 #       dh_installinit
147 #       dh_installcron
148 #       dh_installinfo
149         dh_installman
150         dh_link
151         dh_strip --dbg-package=wrt-dbg
152         dh_compress
153         dh_fixperms
154 #       dh_perl
155         dh_makeshlibs
156         dh_installdeb
157         dh_shlibdeps
158         dh_gencontrol
159         dh_md5sums
160         dh_builddeb
161
162 binary: binary-indep binary-arch
163 .PHONY: build clean binary-indep binary-arch binary install