upload tizen1.0 source
[framework/uifw/xorg/lib/libxcomposite.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for the Debian libxcomposite 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 = libxcomposite1
12
13 include debian/xsfbs/xsfbs.mk
14
15 CFLAGS = -Wall -g
16 LDFLAGS +=  -Wl,--hash-style=both -Wl,--as-needed
17 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
18         CFLAGS += -O0
19 else
20         CFLAGS += -O2
21 endif
22 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
23         NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
24         MAKEFLAGS += -j$(NUMJOBS)
25 endif
26
27 DEB_HOST_ARCH      ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
28 DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
29 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
30 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
31         confflags += --build=$(DEB_HOST_GNU_TYPE)
32 else
33         confflags += --build=$(DEB_HOST_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
34 #       confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
35 endif
36
37
38 build: build-stamp
39 build-stamp:
40         dh_testdir
41         ./autogen.sh
42         #autoreconf -vfi
43         mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
44         cd obj-$(DEB_BUILD_GNU_TYPE) && \
45         ../configure --prefix=/usr --mandir=\$${prefix}/share/man \
46                      --infodir=\$${prefix}/share/info $(confflags) \
47                      CFLAGS="$(CFLAGS)" \
48                      LDFLAGS="$(LDFLAGS)" 
49         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
50         >$@
51
52 clean: xsfclean
53         dh_testdir
54         dh_testroot
55         rm -f build-stamp
56
57         rm -f config.cache config.log config.status
58         rm -f */config.cache */config.log */config.status
59         rm -f conftest* */conftest*
60         rm -rf autom4te.cache */autom4te.cache
61         rm -rf obj-*
62         rm -f aclocal.m4 config.guess config.h.in config.sub configure
63         rm -f depcomp install-sh missing mkinstalldirs
64         rm -f ltmain.sh
65         find -name Makefile.in -exec rm -f {} \;
66         #find -name Makefile.in -delete
67
68         dh_clean
69
70 install: build
71         dh_testdir
72         dh_testroot
73         dh_clean -k
74         dh_installdirs
75
76         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
77
78 # Build architecture-dependent files here.
79 binary-arch: build install
80         dh_testdir
81         dh_testroot
82
83 #       dh_installdocs
84         dh_install --sourcedir=debian/tmp --list-missing
85 #       dh_installchangelogs ChangeLog
86         dh_link
87 #       dh_installman
88         dh_strip --dbg-package=$(PACKAGE)-dbg
89         dh_compress
90         dh_fixperms
91         dh_makeshlibs -V "libxcomposite1 (>= 1:0.3-1)"
92         dh_shlibdeps
93         dh_installdeb
94         dh_gencontrol
95         dh_md5sums
96         dh_builddeb
97
98 # Build architecture-independent files here.
99 binary-indep: build install
100 # Nothing to do
101
102 binary: binary-indep binary-arch
103 .PHONY: build clean binary-indep binary-arch binary install