File: rules

package info (click to toggle)
trickle 1.07-10.1
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 1,664 kB
  • ctags: 539
  • sloc: sh: 8,307; ansic: 4,722; makefile: 79
file content (62 lines) | stat: -rwxr-xr-x 1,354 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
#!/usr/bin/make -f

CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS)
CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS)
LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)

config.status: configure
	dh_testdir
	dh_autoreconf
	CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
        LDFLAGS="$(LDFLAGS)" ./configure --prefix=/usr \
            --mandir=/usr/share/man --sysconfdir=/etc --with-pic

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

build-stamp: config.status
	dh_testdir
	$(MAKE)
	touch build-stamp

build: build-arch

clean:
	dh_testdir
	dh_testroot
	rm -f build-arch-stamp 
	[ ! -f Makefile ] || $(MAKE) distclean
	dh_autoreconf_clean
	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs
	$(MAKE) install DESTDIR=$(CURDIR)/debian/trickle

binary-arch: build install
	dh_testdir
	dh_testroot
	dh_install trickled.conf etc
#	install -D -m 644 debian/lintian-override \
#		$(CURDIR)/debian/trickle/usr/share/lintian/overrides/trickle
	dh_installdocs -n
	dh_installman debian/tricklectl.8
	dh_installchangelogs 
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-indep:

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