File: rules

package info (click to toggle)
task-spanish 0.2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 24 kB
  • sloc: makefile: 21
file content (32 lines) | stat: -rwxr-xr-x 434 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
#!/usr/bin/make -f
#
# rules file for task-spanish
#

build:
	touch build

clean:
	dh_testdir
	dh_clean
	rm -f build

binary-indep:	build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdocs -i README LEEME

	dh_installchangelogs -i
	dh_compress -i
	dh_fixperms -i

	dh_installdeb -i
	dh_gencontrol -i
	dh_md5sums -i
	dh_builddeb -i

binary-arch: build

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