Upload tizen 2.0 beta source
[framework/graphics/freetype.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
18 CFLAGS ?= -Wall -g
19 LDFLAGS ?= 
20 PREFIX ?= /usr
21 DATADIR ?= /opt
22
23 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
24         CFLAGS += -O0
25 else
26         CFLAGS += -O2
27 endif
28
29 LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed
30
31 config.status: configure
32         dh_testdir
33         # Add here commands to configure the package.
34         CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=$(PREFIX) 
35
36 build: build-stamp
37
38 build-stamp:  config.status
39         dh_testdir
40
41         # Add here commands to compile the package.
42         $(MAKE)
43         #docbook-to-man debian/ncurses.sgml > ncurses.1
44
45         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
46                 cat $$f > $${f%.in}; \
47                 sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
48                 sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
49         done
50
51         touch $@
52
53 clean:
54         dh_testdir
55         dh_testroot
56         rm -f build-stamp 
57
58         # Add here commands to clean up after the build process.
59         -$(MAKE) distclean
60 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
61         cp -f /usr/share/misc/config.sub config.sub
62 endif
63 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
64         cp -f /usr/share/misc/config.guess config.guess
65 endif
66
67         for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
68                 rm -f $${f%.in}; \
69         done
70
71         dh_clean 
72
73 install: build
74         dh_testdir
75         dh_testroot
76         dh_clean -k 
77         dh_installdirs
78
79         # Add here commands to install the package into debian/ncurses.
80         $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
81
82
83 # Build architecture-independent files here.
84 binary-indep: build install
85 # We have nothing to do by default.
86
87 # Build architecture-dependent files here.
88 binary-arch: build install
89         dh_testdir
90         dh_testroot
91         dh_installchangelogs 
92         dh_installdocs
93         dh_installexamples
94         dh_install --sourcedir=debian/tmp
95 #       dh_installmenu
96 #       dh_installdebconf       
97 #       dh_installlogrotate
98 #       dh_installemacsen
99 #       dh_installpam
100 #       dh_installmime
101 #       dh_python
102 #       dh_installinit
103 #       dh_installcron
104 #       dh_installinfo
105         dh_installman
106         dh_link
107         dh_strip --dbg-package=libfreetype6-dbg
108         dh_compress
109         dh_fixperms
110 #       dh_perl
111         dh_makeshlibs
112         dh_installdeb
113         dh_shlibdeps
114         dh_gencontrol
115         dh_md5sums
116         dh_builddeb
117
118 binary: binary-indep binary-arch
119 .PHONY: build clean binary-indep binary-arch binary install