Git init
[framework/uifw/xorg/lib/libxdmcp.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for the Debian libxdmcp 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 = libxdmcp6
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 -vfi
41         test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE)
42         cp Wraphelp.c obj-$(DEB_BUILD_GNU_TYPE) #Ick... to allow des building
43         cd obj-$(DEB_BUILD_GNU_TYPE) && \
44         ../configure --prefix=/usr --mandir=\$${prefix}/share/man \
45                      --infodir=\$${prefix}/share/info $(confflags) \
46                      CFLAGS="$(CFLAGS)" 
47         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
48
49         touch build-stamp
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 aclocal.m4 config.guess config.h.in config.sub configure
62         rm -f depcomp install-sh missing mkinstalldirs
63         rm -f ltmain.sh
64         find -name Makefile.in -exec rm -f {} \;
65         #find -name Makefile.in -delete
66
67         dh_clean
68
69 install: build
70         dh_testdir
71         dh_testroot
72         dh_clean -k
73         dh_installdirs
74
75         cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
76
77 # Build architecture-dependent files here.
78 binary-arch: build install
79         dh_testdir
80         dh_testroot
81
82 #       dh_installdocs
83         dh_install --sourcedir=debian/tmp --list-missing
84 #       dh_installchangelogs ChangeLog
85         dh_link
86         dh_strip --dbg-package=$(PACKAGE)-dbg
87         dh_compress
88         dh_fixperms
89         dh_makeshlibs
90 #       dh_makeshlibs --add-udeb=$(PACKAGE)-udeb
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