~ubuntu-branches/ubuntu/raring/sshpass/raring

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Shachar Shemesh
  • Date: 2006-02-28 11:20:23 UTC
  • Revision ID: james.westby@ubuntu.com-20060228112023-cj06ifva2jcdhi9e
Tags: 1.00-1
Initial release Closes: 354800

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
# These are used for cross-compiling and for saving the configure script
 
14
# from having to guess our platform (since we know it already)
 
15
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 
16
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
17
 
 
18
 
 
19
CFLAGS = -Wall -g
 
20
 
 
21
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 
22
        CFLAGS += -O0
 
23
else
 
24
        CFLAGS += -O2
 
25
endif
 
26
 
 
27
config.status: configure
 
28
        dh_testdir
 
29
        # Add here commands to configure the package.
 
30
        CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
31
 
 
32
 
 
33
build: build-stamp
 
34
 
 
35
build-stamp:  config.status
 
36
        dh_testdir
 
37
        $(MAKE)
 
38
        touch build-stamp
 
39
 
 
40
clean:
 
41
        dh_testdir
 
42
        dh_testroot
 
43
        rm -f build-stamp 
 
44
 
 
45
        -$(MAKE) distclean
 
46
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
 
47
        cp -f /usr/share/misc/config.sub config.sub
 
48
endif
 
49
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
 
50
        cp -f /usr/share/misc/config.guess config.guess
 
51
endif
 
52
 
 
53
 
 
54
        dh_clean 
 
55
 
 
56
install: build
 
57
        dh_testdir
 
58
        dh_testroot
 
59
        dh_clean -k 
 
60
        dh_installdirs
 
61
 
 
62
        $(MAKE) install DESTDIR=$(CURDIR)/debian/sshpass
 
63
 
 
64
 
 
65
# Build architecture-independent files here.
 
66
binary-indep: build install
 
67
# We have nothing to do
 
68
 
 
69
# Build architecture-dependent files here.
 
70
binary-arch: build install
 
71
        dh_testdir
 
72
        dh_testroot
 
73
        dh_installchangelogs ChangeLog
 
74
        dh_installdocs
 
75
        dh_installexamples
 
76
        dh_installman
 
77
        dh_link
 
78
        dh_strip
 
79
        dh_compress
 
80
        dh_fixperms
 
81
        dh_installdeb
 
82
        dh_shlibdeps
 
83
        dh_gencontrol
 
84
        dh_md5sums
 
85
        dh_builddeb
 
86
 
 
87
binary: binary-indep binary-arch
 
88
.PHONY: build clean binary-indep binary-arch binary install