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