File: rules

package info (click to toggle)
libxsettings-client 0.17-10
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 1,676 kB
  • ctags: 261
  • sloc: sh: 8,792; ansic: 710; xml: 573; makefile: 123
file content (94 lines) | stat: -rwxr-xr-x 2,729 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
else
CROSS= --build $(DEB_BUILD_GNU_TYPE)
endif

CFLAGS = -Wall -g

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0
else
	CFLAGS += -O2
endif

# shared library versions, option 1
version=1.0.0
major=1

configure: configure-stamp
configure-stamp:
	gtkdocize --copy --docdir doc
	dh_autoreconf
	CFLAGS="$(CFLAGS)" ./configure $(CROSS) --prefix=/usr \
		--mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --enable-gtk-doc
	touch configure-stamp

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp: configure-stamp
	$(MAKE) LIBS=-lX11
	touch build-stamp

clean:
	rm -f build-stamp 
	[ ! -f Makefile ] || $(MAKE) distclean
	$(RM) doc/html/* doc/libXsettings-client-decl-list.txt
	$(RM) doc/libXsettings-client-decl.txt doc/libXsettings-client-undocumented.txt
	$(RM) doc/tmpl/xsettings-common.sgml doc/xml/* doc/libXsettings-client-undeclared.txt
	$(RM) doc/tmpl/xsettings-client.sgml doc/tmpl/config.sgml
	dh_autoreconf_clean
	dh_clean
	# clean upstream debian/ files
	$(RM) debian/libxsettings-client0.postrm debian/libxsettings-client-dev.files 
	$(RM) debian/substvars debian/libxsettings-client0.files debian/libxsettings-client0.postinst

install: build
	dh_prep
	dh_installdirs
	$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
	install -d debian/tmp/usr/share/doc/libxsettings-client-doc/
	ln -s -T /usr/share/gtk-doc/html/libXsettings-client/ debian/tmp/usr/share/doc/libxsettings-client-doc/html

binary-indep: build install
	dh_install -i
	dh_installdocs -i
	dh_installchangelogs -i ChangeLog
	dh_link -i
	dh_compress -i
	dh_fixperms -i
	dh_installdeb -i
	dh_gencontrol -i
	dh_md5sums -i
	dh_builddeb -i

binary-arch: build install
	dh_install -a
	dh_installdocs -a
	dh_installman -a
	dh_installchangelogs -a ChangeLog
	dh_link -a
	dh_strip -a --dbgsym-migration='libxsettings-client0-dbg (<< 0.17-10~)'
	dh_compress -a
	dh_fixperms -a
	dh_makeshlibs -a
	dh_installdeb -a
	dh_shlibdeps -a
	dh_gencontrol -a
	dh_md5sums -a
	dh_builddeb -a

binary: binary-indep binary-arch

.PHONY: build clean binary-indep binary-arch binary install