Clean out grml-live-compat
[grml-live-grml.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 # This file was originally written by Joey Hess and Craig Small.
5 # As a special exception, when this file is copied by dh-make into a
6 # dh-make output file, you may use that output file without restriction.
7 # This special exception was added by Craig Small in version 0.37 of dh-make.
8
9 # Uncomment this to turn on verbose mode.
10 #export DH_VERBOSE=1
11
12 build: build-arch build-indep
13
14 build-arch: build-stamp
15
16 build-indep: build-stamp
17
18 build-stamp:
19         dh_testdir
20         touch $@
21
22 clean:
23         dh_testdir
24         dh_testroot
25         rm -f build-stamp
26
27         dh_clean
28         # clean up the stuff dh_clean leaves behind
29         -rm -rf debian/build
30
31 install: build
32         dh_testdir
33         dh_testroot
34         dh_prep
35         dh_installdirs
36
37 # Build architecture-independent files here.
38 binary-indep: build install
39         dh_testdir
40         dh_testroot
41         dh_install
42         dh_installchangelogs
43         dh_installdocs
44         dh_link
45         dh_strip
46         dh_compress
47         dh_fixperms
48         dh_installdeb
49         dh_shlibdeps
50         dh_gencontrol
51         dh_md5sums
52         dh_builddeb
53
54 binary: binary-indep binary-arch
55 .PHONY: build clean binary-indep binary-arch binary install