~ubuntu-branches/ubuntu/gutsy/rsyncrypto/gutsy

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Shachar Shemesh
  • Date: 2005-03-27 14:36:39 UTC
  • Revision ID: james.westby@ubuntu.com-20050327143639-yvoa7myar7hz7cy9
Tags: 0.12-1
* New upstream version
* Change of license to include explicit permission to link with OpenSSL

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
        CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
30
 
 
31
 
 
32
build: build-stamp
 
33
 
 
34
build-stamp:  config.status
 
35
        dh_testdir
 
36
 
 
37
        $(MAKE)
 
38
 
 
39
        touch build-stamp
 
40
 
 
41
clean:
 
42
        dh_testdir
 
43
        dh_testroot
 
44
        rm -f build-stamp 
 
45
 
 
46
        -$(MAKE) distclean
 
47
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
 
48
        cp -f /usr/share/misc/config.sub config.sub
 
49
endif
 
50
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
 
51
        cp -f /usr/share/misc/config.guess config.guess
 
52
endif
 
53
 
 
54
 
 
55
        dh_clean 
 
56
 
 
57
install: build
 
58
        dh_testdir
 
59
        dh_testroot
 
60
        dh_clean -k 
 
61
        dh_installdirs
 
62
 
 
63
        $(MAKE) install DESTDIR=$(CURDIR)/debian/rsyncrypto
 
64
 
 
65
 
 
66
# Build architecture-independent files here.
 
67
binary-indep: build install
 
68
# We have nothing to do by default.
 
69
 
 
70
# Build architecture-dependent files here.
 
71
binary-arch: build install
 
72
        dh_testdir
 
73
        dh_testroot
 
74
        dh_installchangelogs ChangeLog
 
75
        dh_installdocs
 
76
        dh_installexamples
 
77
        dh_installman
 
78
        dh_link
 
79
        dh_strip
 
80
        dh_compress
 
81
        dh_fixperms
 
82
        dh_installdeb
 
83
        dh_shlibdeps
 
84
        dh_gencontrol
 
85
        dh_md5sums
 
86
        dh_builddeb
 
87
 
 
88
binary: binary-indep binary-arch
 
89
.PHONY: build clean binary-indep binary-arch binary install