File: rules

package info (click to toggle)
lilo 1%3A23.2-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,368 kB
  • sloc: ansic: 13,187; asm: 10,441; perl: 1,095; sh: 989; makefile: 582
file content (22 lines) | stat: -rwxr-xr-x 442 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
#!/usr/bin/make -f
# -*- makefile -*-


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


%:
	dh $@


override_dh_auto_build:
	dh_auto_build
	@echo "Extract html documentation (tech.html, user.html)"
	uudecode -o /dev/stdout debian/doc/tech.html.uu 2>/dev/null | tar -x -z -C debian
	uudecode -o /dev/stdout debian/doc/user.html.uu 2>/dev/null | tar -x -z -C debian

override_dh_auto_clean:
	rm -rf debian/html
	dh_auto_clean