~ubuntu-branches/ubuntu/hardy/gmt-tutorial/hardy

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Landschoff
  • Date: 2001-09-14 09:22:32 UTC
  • Revision ID: james.westby@ubuntu.com-20010914092232-b7w133ngnu0g28qn
Tags: 3.4-1
Initial release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
# Sample 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=2
 
10
 
 
11
build:
 
12
clean:
 
13
        dh_testdir
 
14
        dh_testroot
 
15
        dh_clean
 
16
 
 
17
# Build architecture-independent files here.
 
18
binary-arch: 
 
19
# We have nothing to do by default.
 
20
 
 
21
# Build architecture-dependent files here.
 
22
binary-indep:
 
23
        dh_testdir
 
24
        dh_testroot
 
25
        dh_installdocs
 
26
        dh_installchangelogs 
 
27
        dh_fixperms
 
28
        dh_installdeb
 
29
        dh_shlibdeps
 
30
        dh_gencontrol
 
31
        dh_md5sums
 
32
        dh_builddeb
 
33
 
 
34
binary: binary-indep binary-arch
 
35
.PHONY: build clean binary-indep binary-arch binary