File: rules

package info (click to toggle)
mkrboot 0.96
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 124 kB
  • sloc: sh: 169; makefile: 27
file content (34 lines) | stat: -rwxr-xr-x 526 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
#!/usr/bin/make -f

build:
	dh_testdir
	touch $@

clean:
	dh_testdir
	dh_testroot
	$(RM) build
	dh_clean

binary-indep: build
	dh_testdir
	dh_testroot

binary-arch: build
	dh_testdir
	dh_testroot
	dh_installdirs
	dh_installchangelogs
	dh_installdocs
	cp -a mkrboot debian/mkrboot/usr/sbin
	dh_installman mkrboot.8
	cp -a syslinux fdos loadlin lilo debian/mkrboot/usr/lib/mkrboot
	dh_compress
	dh_fixperms
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary:	binary-indep binary-arch

.PHONY: binary binary-arch binary-indep clean