File: rules

package info (click to toggle)
purity-off 0-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 112 kB
  • ctags: 1
  • sloc: makefile: 26
file content (36 lines) | stat: -rwxr-xr-x 596 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
#!/usr/bin/make -f

SHELL+= -e
#export DH_VERBOSE=1

build:
	$(checkdir)
	touch build

clean:
	$(checkdir)
	-rm -f build
	-rm -rf debian/tmp debian/files debian/substvars debian/*.debhelper

binary-indep: checkroot build
	$(checkdir)
	-rm -rf debian/tmp
	dh_installdirs usr/share/games/purity/
	cp tests/* debian/tmp/usr/share/games/purity/
	dh_installdocs
	dh_installchangelogs
	dh_fixperms
	dh_gencontrol
	dh_installdeb
	dh_builddeb
	
define checkdir
	test -f debian/rules
endef

binary: binary-indep

checkroot:
	test root = "`whoami`"

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