Git init
[adaptation/xorg/driver/xserver-xorg-input-gesture.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for the Debian xserver-xorg-input-gesture 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 include debian/xsfbs/xsfbs.mk
11
12 CFLAGS = -Wall -g
13 LDFLAGS +=  -Wl,--hash-style=both -Wl,--as-needed
14 ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
15         CFLAGS += -O0
16 else
17         CFLAGS += -O2
18 endif
19 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
20         NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
21         MAKEFLAGS += -j$(NUMJOBS)
22 endif
23
24 DEB_HOST_ARCH      ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
25 DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
26 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
27 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
28         confflags += --build=$(DEB_HOST_GNU_TYPE)
29 else
30         confflags += --build=$(DEB_HOST_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
31 #       confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
32 endif
33
34 # kbd_drv.a isn't phenomenally useful; kbd_drv.so more so
35 confflags += --disable-static
36
37 #configure: $(STAMP_DIR)/patch
38 configure:
39         autoreconf -vfi
40         #./autogen.sh
41
42 obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
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
50 build: build-stamp
51 build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status
52         dh_testdir
53         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
54         >$@
55
56 clean: xsfclean
57         dh_testdir
58         dh_testroot
59         rm -f build-stamp
60
61         rm -f config.cache config.log config.status
62         rm -f */config.cache */config.log */config.status
63         rm -f conftest* */conftest*
64         rm -rf autom4te.cache */autom4te.cache
65         rm -rf obj-*
66         rm -f $$(find -name Makefile.in)
67         rm -f compile config.guess config.sub configure depcomp install-sh
68         rm -f ltmain.sh missing INSTALL aclocal.m4 ylwrap mkinstalldirs config.h.in
69
70         dh_clean
71
72 install: build
73         dh_testdir
74         dh_testroot
75         dh_clean -k
76         dh_installdirs
77
78         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
79
80 # Build architecture-dependent files here.
81 binary-arch: build install serverabi
82         dh_testdir
83         dh_testroot
84
85         dh_installdocs
86         dh_installchangelogs ChangeLog
87         dh_install --sourcedir=debian/tmp --list-missing  --exclude=usr/share/man/man4
88         dh_installman
89         dh_link
90         dh_strip --dbg-package=xserver-xorg-input-gesture-dbg
91         dh_compress
92         dh_fixperms
93         dh_installdeb
94 #       dh_shlibdeps -- --warnings=6
95         dh_shlibdeps --
96         dh_gencontrol
97         dh_md5sums
98         dh_builddeb
99
100 # Build architecture-independent files here.
101 binary-indep: build install
102 # Nothing to do
103
104 binary: binary-indep binary-arch
105 .PHONY: build clean binary-indep binary-arch binary install