96620f346d0878e0740a22601bacbdb76c11f40b
[grml-terminalserver.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 CFLAGS = -Wall -g
13
14 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
15         CFLAGS += -O0
16 else
17         CFLAGS += -O2
18 endif
19
20 configure: configure-stamp
21 configure-stamp:
22         dh_testdir
23         # Add here commands to configure the package.
24
25         touch configure-stamp
26
27
28 build: build-stamp
29
30 build-stamp: configure-stamp 
31         dh_testdir
32
33         # Add here commands to compile the package.
34
35         touch build-stamp
36
37 clean:
38         dh_testdir
39         dh_testroot
40         rm -f build-stamp configure-stamp
41
42         # Add here commands to clean up after the build process.
43         $(MAKE) clean
44
45         dh_clean 
46
47 install: build
48         dh_testdir
49         dh_testroot
50         dh_clean -k 
51         dh_installdirs usr/sbin
52
53         # Add here commands to install the package into debian/grml-terminalserver.
54         $(MAKE) install DESTDIR=$(CURDIR)/debian/grml-terminalserver
55
56
57 # Build architecture-independent files here.
58 binary-indep: build install
59 # We have nothing to do by default.
60
61 # Build architecture-dependent files here.
62 binary-arch: build install
63         dh_testdir
64         dh_testroot
65         dh_installchangelogs 
66         dh_installdocs
67         dh_installexamples
68         dh_installman debian/grml-terminalserver.8 debian/grml-terminalserver-config.8
69         dh_installexamples create-netboot
70         dh_link
71         dh_compress
72         mkdir -p debian/grml-terminalserver/usr/share/lintian/overrides/
73         cp -av debian/overrides debian/grml-terminalserver/usr/share/lintian/overrides/grml-terminalserver
74         dh_fixperms
75         dh_installdeb
76         dh_gencontrol
77         dh_md5sums
78         dh_builddeb
79
80 binary: binary-indep binary-arch
81 .PHONY: build clean binary-indep binary-arch binary install configure