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