Tizen 2.0 release
[adaptation/opengl-es-virtual-drv.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 # These are used for cross-compiling and for saving the configure script
13 # from having to guess our platform (since we know it already)
14 DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
15 DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
16  
17 CFLAGS ?= -Wall 
18 LDFLAGS ?=
19 PREFIX ?= /usr
20 DATADIR ?= /opt
21 CONFIGURE_OPTION ?=
22
23 CFLAGS += -fPIC -rdynamic
24 CXXFLAGS += -fPIC
25 LDFLAGS += -Wl,--hash-style=both -Wl,--as-needed -Wl,--rpath=$(PREFIX)/lib 
26
27 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
28         CFLAGS += -O0
29 else
30         CFLAGS += -O2
31 endif
32
33
34 # shared library versions, option 1
35 version=1.0.0
36 major=1
37 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
38 #version=`ls src/.libs/lib*.so.* | \
39 # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
40 #major=`ls src/.libs/lib*.so.* | \
41 # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
42
43
44 configure: configure-stamp
45 configure-stamp:
46         dh_testdir
47
48         # Add here commands to configure the package.
49         ./autogen.sh
50         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=$(PREFIX) $(CONFIGURE_OPTION)
51
52         touch configure-stamp
53
54
55 build: build-stamp
56 build-stamp: configure-stamp 
57         dh_testdir
58
59         # Add here commands to compile the package.
60         $(MAKE)
61
62         touch $@
63
64 clean:
65         dh_testdir
66         dh_testroot
67         rm -f build-stamp configure-stamp
68
69         # Add here commands to clean up after the build process.
70         -$(MAKE) clean
71 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
72         cp -f /usr/share/misc/config.sub config.sub
73 endif
74
75 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
76         cp -f /usr/share/misc/config.guess config.guess
77 endif
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/tmp
88         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
89
90         mkdir -p $(CURDIR)/debian/tmp/usr/include
91         cp -a src/include/KHR $(CURDIR)/debian/tmp/usr/include/.
92
93 # Build architecture-independent files here.
94 binary-indep: build install
95 # We have nothing to do by default.
96
97 # Build architecture-dependent files here.
98 binary-arch: build install
99         dh_testdir
100         dh_testroot
101         dh_installchangelogs
102         dh_installdocs
103         dh_installexamples
104         dh_install --sourcedir debian/tmp
105 #       dh_installmenu
106 #       dh_installdebconf   
107 #       dh_installlogrotate
108 #       dh_installemacsen
109 #       dh_installpam
110 #       dh_installmime
111 #       dh_installinit
112 #       dh_installcron
113 #       dh_installinfo
114         dh_installman
115         dh_link
116         dh_strip -popengl-es-virtual-drv --dbg-package=opengl-es-virtual-drv-dbg
117         dh_compress
118         dh_fixperms
119 #       dh_perl
120 #       dh_python
121         dh_makeshlibs
122         dh_installdeb
123         dh_shlibdeps
124         dh_gencontrol
125         dh_md5sums
126         dh_builddeb
127
128 binary: binary-indep binary-arch
129 .PHONY: build clean binary-indep binary-arch binary install configure