~ubuntu-branches/ubuntu/saucy/rovclock/saucy

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Alexander GQ Gerasiov
  • Date: 2006-05-18 17:05:15 UTC
  • Revision ID: james.westby@ubuntu.com-20060518170515-5s1s9zzrk3jyu2rp
Tags: 0.6e-3
debian/control: set Architecture from all to i386, amd64.  Closes: #366934

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
13
 
 
14
 
 
15
CFLAGS = -Wall -g
 
16
 
 
17
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 
18
        CFLAGS += -O0
 
19
else
 
20
        CFLAGS += -O2
 
21
endif
 
22
 
 
23
configure: configure-stamp
 
24
configure-stamp:
 
25
        dh_testdir
 
26
 
 
27
        touch configure-stamp
 
28
 
 
29
 
 
30
build: build-stamp
 
31
 
 
32
build-stamp: configure-stamp 
 
33
        dh_testdir
 
34
 
 
35
        $(MAKE)
 
36
 
 
37
        touch build-stamp
 
38
 
 
39
clean:
 
40
        dh_testdir
 
41
        dh_testroot
 
42
        rm -f build-stamp configure-stamp
 
43
 
 
44
        -$(MAKE) clean
 
45
 
 
46
        dh_clean 
 
47
 
 
48
install: build
 
49
        dh_testdir
 
50
        dh_testroot
 
51
        dh_clean -k 
 
52
        dh_installdirs
 
53
 
 
54
        install -o root -g root -m 755 rovclock debian/rovclock/usr/sbin
 
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 ChangeLog
 
66
        dh_installdocs
 
67
        dh_installexamples
 
68
#       dh_install
 
69
#       dh_installmenu
 
70
#       dh_installdebconf       
 
71
#       dh_installlogrotate
 
72
#       dh_installemacsen
 
73
#       dh_installpam
 
74
#       dh_installmime
 
75
#       dh_installinit
 
76
#       dh_installcron
 
77
#       dh_installinfo
 
78
        dh_installman debian/rovclock.8
 
79
        dh_link
 
80
        dh_strip
 
81
        dh_compress
 
82
        dh_fixperms
 
83
#       dh_perl
 
84
#       dh_python
 
85
#       dh_makeshlibs
 
86
        dh_installdeb
 
87
        dh_shlibdeps
 
88
        dh_gencontrol
 
89
        dh_md5sums
 
90
        dh_builddeb
 
91
 
 
92
binary: binary-indep binary-arch
 
93
.PHONY: build clean binary-indep binary-arch binary install configure