~ubuntu-branches/debian/jessie/acfax/jessie

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2001-12-27 12:07:46 UTC
  • Revision ID: james.westby@ubuntu.com-20011227120746-l72xpm5hcde2sa2s
Tags: 981011-7
Changed Imakefile to use ComplexProgramTargetNoMan rather
than ComplexProgramTarget (closes: #123696)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
package = acfax
 
4
 
 
5
build:
 
6
        dh_testdir
 
7
        xmkmf
 
8
        make
 
9
        touch build
 
10
 
 
11
clean:
 
12
        dh_testdir
 
13
        -make clean
 
14
        -rm -f build Makefile
 
15
        -rm -f `find . -name "*~"`
 
16
        dh_clean
 
17
 
 
18
binary-indep:   build
 
19
# nothing else to do
 
20
 
 
21
binary-arch:    build
 
22
        dh_clean
 
23
        dh_installdirs
 
24
        make install DESTDIR=`pwd`/debian/tmp BINDIR=/usr/bin
 
25
 
 
26
        dh_installdocs 0README 0FEATURES 0TODO
 
27
        dh_installmenu
 
28
        dh_installmanpages
 
29
        dh_undocumented
 
30
        dh_installchangelogs
 
31
        dh_strip
 
32
        dh_compress
 
33
        dh_fixperms
 
34
        dh_installdeb
 
35
        dh_shlibdeps
 
36
        dh_gencontrol
 
37
        dh_makeshlibs
 
38
        dh_md5sums
 
39
        dh_builddeb
 
40
 
 
41
binary:         binary-indep binary-arch
 
42
 
 
43
checkroot:
 
44
        dh_testdir
 
45
        dh_testroot
 
46
 
 
47
.PHONY: binary binary-arch binary-indep clean checkroot