tizen_2.0 merged
[framework/system/dlog.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 architecture
36 endif
37
38 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed -Wl,--no-undefined
39
40 #preconfig: 
41 #       autoconf
42 #       automake
43
44 config.status: configure.ac Makefile.am
45         dh_testdir
46         # Add here commands to configure the package.
47         ./autogen.sh
48         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=$(PREFIX) 
49
50 build: build-stamp
51
52 build-stamp:  config.status
53         dh_testdir
54         touch build-stamp
55
56         # Add here commands to compile the package.
57         $(MAKE)
58         #docbook-to-man debian/ncurses.sgml > ncurses.1
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 build-stamp 
72
73         # Add here commands to clean up after the build process.
74         -$(MAKE) distclean
75 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
76         cp -f /usr/share/misc/config.sub config.sub
77 endif
78 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
79         cp -f /usr/share/misc/config.guess config.guess
80 endif
81
82         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
83                 rm -f $${f%.in}; \
84         done
85
86         dh_clean 
87
88 install: build
89         dh_testdir
90         dh_testroot
91         dh_clean -k 
92         dh_installdirs
93
94         # Add here commands to install the package into debian/ncurses.
95         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
96
97
98 # Build architecture-independent files here.
99 binary-indep: build install
100 # We have nothing to do by default.
101
102 # Build architecture-dependent files here.
103 binary-arch: build install
104         dh_testdir
105         dh_testroot
106         dh_installchangelogs 
107         dh_installdocs
108         dh_installexamples
109         dh_install --list-missing --sourcedir=debian/tmp
110 #       dh_installmenu
111 #       dh_installdebconf       
112 #       dh_installlogrotate
113 #       dh_installemacsen
114 #       dh_installpam
115 #       dh_installmime
116 #       dh_python
117 #       dh_installinit
118 #       dh_installcron
119 #       dh_installinfo
120         dh_installman
121         dh_link
122 #       dh_strip 
123         dh_strip --dbg-package=dlog-0-dbg
124         dh_compress
125         dh_fixperms
126 #       dh_perl
127         dh_makeshlibs
128         dh_installdeb
129         dh_shlibdeps
130         dh_gencontrol
131         dh_md5sums
132         dh_builddeb
133
134 binary: binary-indep binary-arch
135 .PHONY: build clean binary-indep binary-arch binary install