upload tizen2.0 source
[framework/uifw/xorg/lib/libfontenc.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for the Debian libfontenc package.
3 # Copyright © 2004 Scott James Remnant <scott@netsplit.com>
4 # Copyright © 2005 Daniel Stone <daniel@fooishbar.org>
5 # Copyright © 2005 David Nusinow <dnusinow@debian.org>
6
7 # Uncomment this to turn on verbose mode.
8 #export DH_VERBOSE=1
9
10 # set this to the name of the main shlib's binary package
11 PACKAGE = libfontenc1
12
13 include debian/xsfbs/xsfbs.mk
14
15 CFLAGS = -Wall -g
16 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
17         CFLAGS += -O0
18 else
19         CFLAGS += -O2
20 endif
21 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
22         NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
23         MAKEFLAGS += -j$(NUMJOBS)
24 endif
25
26 DEB_HOST_ARCH      ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
27 DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
28 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
29 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
30         confflags += --build=$(DEB_HOST_GNU_TYPE)
31 else
32         confflags += --build=$(DEB_HOST_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
33 #       confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
34 endif
35
36
37 build: build-stamp
38 build-stamp:
39         dh_testdir
40         #autoreconf -v -f -i -Im4
41         ./autogen.sh
42         mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
43         cd obj-$(DEB_BUILD_GNU_TYPE) && \
44         ../configure --prefix=/usr --mandir=\$${prefix}/share/man \
45                      --infodir=\$${prefix}/share/info $(confflags) \
46                      --with-encodingsdir=\$${datadir}/fonts/X11/encodings \
47                      CFLAGS="$(CFLAGS)" 
48         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
49         >$@
50
51 clean:
52         dh_testdir
53         dh_testroot
54         rm -f build-stamp
55
56         rm -f config.cache config.log config.status
57         rm -f */config.cache */config.log */config.status
58         rm -f conftest* */conftest*
59         rm -rf autom4te.cache */autom4te.cache
60         rm -rf obj-*
61         rm -f INSTALL aclocal.m4 config.guess config.h.in config.sub configure
62         rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
63         find -name Makefile.in -exec rm -f {} \;
64         #find -name Makefile.in -delete
65
66         dh_clean
67
68 install: build
69         dh_testdir
70         dh_testroot
71         dh_clean -k
72         dh_installdirs
73
74         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
75
76 # Build architecture-dependent files here.
77 binary-arch: build install
78         dh_testdir
79         dh_testroot
80
81 #       dh_installdocs
82         dh_install --sourcedir=debian/tmp --list-missing
83 #       dh_installchangelogs ChangeLog
84         dh_link
85         dh_strip --dbg-package=$(PACKAGE)-dbg
86         dh_compress
87         dh_fixperms
88         dh_makeshlibs
89 #       dh_makeshlibs --add-udeb=$(PACKAGE)-udeb
90         dh_shlibdeps
91         dh_installdeb
92         dh_gencontrol
93         dh_md5sums
94         dh_builddeb
95
96 # Build architecture-independent files here.
97 binary-indep: build install
98 # Nothing to do
99
100 binary: binary-indep binary-arch
101 .PHONY: build clean binary-indep binary-arch binary install