File: rules

package info (click to toggle)
shhmsg 1.4.2-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, stretch, trixie
  • size: 208 kB
  • ctags: 133
  • sloc: ansic: 319; makefile: 301; sh: 20
file content (68 lines) | stat: -rwxr-xr-x 1,575 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
#!/usr/bin/make -f

# Uses debhelper. Based on example by Joey Hess.
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk

build: build-arch build-indep

build-arch: build-stamp
build-indep: build-stamp

build-stamp:
	dh_testdir
	CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" $(MAKE)
	$(MAKE) clean
	SHARED=1 CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" $(MAKE)
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp
	$(MAKE) clean
	rm -f lib*
	dh_clean libshhmsg.a

binary-indep: build

binary-arch: build
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs

# runtime (shhmsg)
	install libshhmsg.so.1.4.2 debian/libshhmsg1/usr/lib
	ln -s libshhmsg.so.1.4.2 \
  debian/libshhmsg1/usr/lib/libshhmsg.so.1

# dev (shhmsg-dev)
	install -m644 libshhmsg.a debian/libshhmsg1-dev/usr/lib
	install -m644 shhmsg.h debian/libshhmsg1-dev/usr/include
	ln -s libshhmsg.so.1 \
  debian/libshhmsg1-dev/usr/lib/libshhmsg.so

	dh_installdocs
	dh_installchangelogs ChangeLog
	dh_installexamples
	dh_strip
	dh_compress
	dh_fixperms
	dh_makeshlibs -V
	dh_installdeb
# You must run dpkg-shlibdeps (dh_shlibdeps) after you installed
# shlibs files into the build directory (dh_makeshlibs).
# See the footnote of the Policy, section 9.2 for details.
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

source diff:
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

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