~ubuntu-branches/ubuntu/natty/ntfsdoc/natty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2002-01-12 03:35:17 UTC
  • Revision ID: james.westby@ubuntu.com-20020112033517-y3lwqq9qdtehcq1o
Tags: 0.4-3
debian/control: Replaced Build-Depends by Build-Depends-Indep.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# debian/rules that uses debhelper.
 
3
# GNU copyright 1997 to 1999 by Joey Hess.
 
4
 
 
5
# Uncomment this to turn on verbose mode.
 
6
#export DH_VERBOSE=1
 
7
 
 
8
# This is the debhelper compatability version to use.
 
9
export DH_COMPAT=3
 
10
 
 
11
configure: configure-stamp
 
12
configure-stamp:
 
13
        dh_testdir
 
14
# Add here commands to configure the package.
 
15
        
 
16
 
 
17
        touch configure-stamp
 
18
 
 
19
build: configure-stamp build-stamp
 
20
build-stamp:
 
21
        dh_testdir
 
22
 
 
23
# Add here commands to compile the package.
 
24
#       $(MAKE)
 
25
#/usr/bin/docbook-to-man debian/ntfsdoc.sgml > ntfsdoc.1
 
26
 
 
27
        touch build-stamp
 
28
 
 
29
clean:
 
30
        dh_testdir
 
31
        dh_testroot
 
32
        rm -f build-stamp configure-stamp
 
33
 
 
34
# Add here commands to clean up after the build process.
 
35
 
 
36
        dh_clean
 
37
 
 
38
install: build
 
39
        dh_testdir
 
40
        dh_testroot
 
41
        dh_clean -k
 
42
        dh_installdirs
 
43
 
 
44
# Add here commands to install the package into debian/ntfsdoc.
 
45
#       tar cf - --exclude debian * | (cd debian/ntfsdoc && tar xf -)
 
46
 
 
47
# Build architecture-independent files here.
 
48
binary-indep: build install
 
49
# We have nothing to do by default.
 
50
        dh_testdir
 
51
        dh_testroot
 
52
#       dh_undocumented
 
53
        dh_installdocs
 
54
        dh_installchangelogs 
 
55
#       dh_compress
 
56
        dh_fixperms
 
57
#       dh_makeshlibs
 
58
        dh_installdeb
 
59
        dh_gencontrol
 
60
        dh_md5sums
 
61
        dh_builddeb
 
62
 
 
63
# Build architecture-dependent files here.
 
64
binary-arch: build install
 
65
 
 
66
binary: binary-indep binary-arch
 
67
.PHONY: build clean binary-indep binary-arch binary install configure