File: rules

package info (click to toggle)
debian-zh-faq 1.13
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 188 kB
  • sloc: perl: 179; makefile: 170
file content (97 lines) | stat: -rwxr-xr-x 2,721 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
95
96
97
#!/usr/bin/make -f
#

package = debian-zh-faq
SHELL = /bin/sh
d = debian/$(bin-package)

subpkgs = s t
s_locale = zh_CN
t_locale = zh_TW
locale = $($(subpkg)_locale)
binary_subpkgs = $(addprefix binary_,$(subpkgs))
install_subpkgs = $(addprefix install_,$(subpkgs))
clean_subpkgs = $(addprefix clean_,$(subpkgs))
bin-package = $(package)-$(subpkg)

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

build: build-stamp
build-stamp:
	dh_testdir

	# Add here commands to compile the package.
	$(MAKE)

	touch build-stamp

clean: $(clean_subpkgs)
	dh_testdir
	dh_testroot
	rm -f build-stamp

	# Add here commands to clean up after the build process.
	[ ! -f Makefile ] || $(MAKE) distclean

	cd debian \
	&& for i in copyright README.Debian; do \
		slice	-o UNDEFuCN:debian-zh-faq-s.$$i \
			-o UNDEFuTW:debian-zh-faq-t.$$i.tmp \
			$$i.in ; \
		autob5 < debian-zh-faq-t.$$i.tmp > debian-zh-faq-t.$$i ; \
		rm -f debian-zh-faq-t.$$i.tmp ; \
	done \
	&&	slice	-o UNDEFuCN:debian-zh-faq-s.doc-base \
			-o UNDEFuTW:debian-zh-faq-t.doc-base \
			in.doc-base
	rm -f debian/debian-zh-faq-s.README.Debian debian/debian-zh-faq-t.README.Debian

$(clean_subpkgs): subpkg = $(patsubst clean_%,%,$@) 
$(clean_subpkgs): DH_OPTIONS = -p$(bin-package) -P$(d)
$(clean_subpkgs):
	dh_testdir $(DH_OPTIONS)
	dh_testroot $(DH_OPTIONS)
	dh_clean $(DH_OPTIONS)

install: build $(install_subpkgs)
$(install_subpkgs): subpkg = $(patsubst install_%,%,$@)
$(install_subpkgs): DH_OPTIONS = -p$(bin-package) -P$(d)
$(install_subpkgs): build
	dh_testdir $(DH_OPTIONS)
	dh_testroot $(DH_OPTIONS)
	dh_prep
	dh_installdirs $(DH_OPTIONS)

# Build architecture-independent files here.
binary-indep: build install $(binary_subpkgs)
$(binary_subpkgs): subpkg = $(patsubst binary_%,%,$@)
$(binary_subpkgs): DH_OPTIONS = -p$(bin-package) -P$(d)
$(binary_subpkgs): build install
	dh_testdir $(DH_OPTIONS)
	dh_testroot $(DH_OPTIONS)
	dh_installdocs $(DH_OPTIONS) \
		debian-zh-faq.$(locale).ps.gz
#		debian-zh-faq.$(locale).ps.gz $(locale)/html
	dh_installdocs $(DH_OPTIONS) \
		debian-zh-faq.en.ps.gz 
#	for i in frames noframes; do ( \
#		&& rm -f *.pl *.tex *.log *.aux *.idx WARNINGS \
#	); done	
#		cd $(d)/usr/share/doc/$(package)-$(subpkg)/html/$$i 
	dh_installchangelogs $(DH_OPTIONS)
	dh_link $(DH_OPTIONS)
	dh_compress $(DH_OPTIONS)
	dh_fixperms $(DH_OPTIONS)
	dh_installdeb $(DH_OPTIONS)
	dh_gencontrol $(DH_OPTIONS)
	dh_md5sums $(DH_OPTIONS)
	dh_builddeb $(DH_OPTIONS)

# Build architecture-dependent files here.
binary-arch: build install
# We have nothing to do by default.

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install \
	$(subpkgs) $(install_subpkgs) $(binary_subpkgs) $(clean_subpkgs)