blob: 6858577a35db4121782ae0df3fc587a87f7078d9 (
plain)
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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
build: build-stamp
build-stamp:
dh_testdir
dh_testroot
$(MAKE) build=release prefix=$(CURDIR)/debian/tmp/usr install
touch $@
clean:
dh_testdir
dh_testroot
rm -f build-stamp
-$(MAKE) clean
dh_clean
# Build architecture-independent files here.
binary-indep: build
dh_testdir
dh_testroot
dh_installdirs
dh_installdocs
dh_installchangelogs
dh_installmenu
dh_installmime
dh_installman
dh_compress
# Build architecture-dependent files here.
binary-arch: build
dh_testdir
dh_testroot
dh_installdirs -a
dh_install -a
dh_strip -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
|