~ubuntu-branches/ubuntu/precise/pcopy/precise

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-10-18 13:07:33 UTC
  • Revision ID: james.westby@ubuntu.com-20061018130733-w33h5fjpadmyk31d
Tags: 1.5-0
* Initial release (Closes: #393849, #372579).
* Run autoconf to update configure to fix "configure: error: can
  only configure for one host and one target at a time".

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