File: rules

package info (click to toggle)
stx2any 1.56-2.2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 712 kB
  • sloc: sh: 312; python: 288; lisp: 137; makefile: 126; sed: 1
file content (53 lines) | stat: -rwxr-xr-x 812 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/make -f

configure: configure-stamp
configure-stamp:
	dh_testdir
	touch configure-stamp

build-indep: build-stamp
build-stamp: configure-stamp 
	dh_testdir
	$(MAKE)
	touch build-stamp

build-arch:
	:

build: build-indep build-arch

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp
	$(MAKE) clean
	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs
	$(MAKE) install DESTDIR=$(CURDIR)/debian/stx2any

binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs 
	dh_installdocs
	dh_installemacsen
	dh_link
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch:
	:

binary: binary-indep binary-arch

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