upload tizen1.0 source
[framework/uifw/xorg/lib/libxxf86dga.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for the Debian libxxf86dga 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 = libxxf86dga1
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_HOST_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 endif
35
36 configure: $(STAMP_DIR)/patch
37         dh_testdir
38         autoreconf -vfi
39
40 build: build-stamp
41 build-stamp: configure $(STAMP_DIR)/genscripts
42         dh_testdir
43
44         mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
45         cd obj-$(DEB_BUILD_GNU_TYPE) && \
46         ../configure --prefix=/usr --mandir=\$${prefix}/share/man \
47                      --infodir=\$${prefix}/share/info $(confflags) \
48                      CFLAGS="$(CFLAGS)" \
49                      LDFLAGS="$(LDFLAGS)" 
50         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
51         >$@
52
53 clean: xsfclean
54         dh_testdir
55         dh_testroot
56         rm -f build-stamp
57
58         rm -f config.cache config.log config.status
59         rm -f */config.cache */config.log */config.status
60         rm -f conftest* */conftest*
61         rm -rf autom4te.cache */autom4te.cache
62         rm -rf obj-*
63         rm -f aclocal.m4 compile config.guess config.sub configure
64         rm -f depcomp install-sh ltmain.sh missing mkinstalldirs
65         rm -f src/config.h.in
66         rm -f $$(find -name Makefile.in)
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_strip --dbg-package=$(PACKAGE)-dbg
88         dh_compress
89         dh_fixperms
90         dh_makeshlibs
91         dh_shlibdeps
92         dh_installdeb
93         dh_gencontrol
94         dh_md5sums
95         dh_builddeb
96
97 # Build architecture-independent files here.
98 binary-indep: build install
99 # Nothing to do
100
101 binary: binary-indep binary-arch
102 .PHONY: build clean binary-indep binary-arch binary install