File: rules

package info (click to toggle)
patchutils 0.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,752 kB
  • ctags: 391
  • sloc: sh: 7,174; ansic: 6,052; xml: 2,395; perl: 409; makefile: 269
file content (68 lines) | stat: -rwxr-xr-x 1,346 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
#-*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

D=$(CURDIR)/debian/patchutils/usr

configure: configure-stamp
configure-stamp:
	dh_testdir
	dh_autoreconf
	dh_auto_configure
	touch configure-stamp

build build-arch: build-stamp
build-stamp: configure-stamp
	dh_testdir
	# the Makefile runs some stuff twice with -jN
	$(MAKE) -j1
	# Manual files that use the .so links to include other pages should
	# point to a path relative to the top-level manual hierarchy
	sed -i -e 's/ rediff.1/ man1\/rediff.1/' doc/editdiff.1
ifneq (nocheck,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
	$(MAKE) check -j1
endif
	touch build-stamp

build-indep:

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp
	[ ! -f Makefile ] || $(MAKE) distclean
	dh_autoreconf_clean
	dh_clean doc/*.1 doc/*.6

install: build-stamp
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs
	$(MAKE) install prefix=$D
	mkdir $D/games
	mv $D/bin/espdiff $D/games

binary-arch: install
	dh_testdir
	dh_testroot
	dh_installchangelogs ChangeLog
	dh_installdocs AUTHORS BUGS NEWS TODO
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_perl
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-indep:

binary: binary-indep binary-arch

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