File: rules

package info (click to toggle)
bhl 1.7.3-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 580 kB
  • sloc: lisp: 3,662; sh: 129; makefile: 92
file content (41 lines) | stat: -rwxr-xr-x 634 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/make -f

#export DH_VERBOSE=1

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

build-stamp:
	dh_testdir
	$(MAKE) info
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp bhl.info*

	dh_clean

binary-arch:

binary-indep: build-stamp
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs
	dh_install
	dh_installdocs README
	dh_installemacsen
	dh_installinfo bhl.info*
	dh_installchangelogs ChangeLog
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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