File: rules

package info (click to toggle)
s390-sysconfig-writer 0.4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 32 kB
  • sloc: makefile: 22; sh: 3
file content (35 lines) | stat: -rwxr-xr-x 645 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
#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

build:

clean:
	dh_testdir
	dh_clean

install:
	dh_testdir
	dh_testroot
	dh_clean -k

	install -D debian/s390-sysconfig-writer.post-base-installer \
		 debian/s390-sysconfig-writer/usr/lib/post-base-installer.d/20sysconfig-writer

# Build architecture-independent files here.
binary-indep:

# Build architecture-dependent files here.
binary-arch: install
	dh_testdir
	dh_testroot
	dh_installdirs
	dh_installdeb 
	dh_fixperms
	dh_shlibdeps
	dh_gencontrol
	dh_builddeb

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