~ubuntu-branches/ubuntu/trusty/fuse-umfuse-iso9660/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Filippo Giunchedi
  • Date: 2007-05-19 17:14:40 UTC
  • Revision ID: james.westby@ubuntu.com-20070519171440-xtlxm1u9otipdypn
Tags: 0.2-2
switch to CDBS, as a side effect this Closes: #425091 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
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
 
 
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
 
        
37
 
        # Add here commands to configure the package.
38
 
        ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)"
39
 
 
40
 
 
41
 
build: build-stamp
42
 
build-stamp:  config.status
43
 
        dh_testdir
44
 
 
45
 
        # Add here commands to compile the package.
46
 
        $(MAKE)
47
 
 
48
 
        touch $@
49
 
 
50
 
clean:
51
 
        dh_testdir
52
 
        dh_testroot
53
 
        rm -f build-stamp 
54
 
 
55
 
        # Add here commands to clean up after the build process.
56
 
        -$(MAKE) distclean
57
 
        
58
 
        -rm -f config.guess
59
 
        -rm -f config.sub
60
 
 
61
 
        dh_clean 
62
 
 
63
 
install: build
64
 
        dh_testdir
65
 
        dh_testroot
66
 
        dh_clean -k 
67
 
        dh_installdirs
68
 
 
69
 
        # Add here commands to install the package into debian/tmp
70
 
        $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
71
 
 
72
 
 
73
 
# Build architecture-independent files here.
74
 
binary-indep: build install
75
 
# We have nothing to do by default.
76
 
 
77
 
# Build architecture-dependent files here.
78
 
binary-arch: build install
79
 
        dh_testdir
80
 
        dh_testroot
81
 
        dh_installchangelogs 
82
 
        dh_installdocs
83
 
        dh_installexamples
84
 
        dh_install --sourcedir=debian/tmp
85
 
        dh_installman
86
 
        dh_link
87
 
        dh_strip
88
 
        dh_compress
89
 
        dh_fixperms
90
 
        dh_makeshlibs
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 
 
2
 
 
3
include /usr/share/cdbs/1/rules/debhelper.mk
 
4
include /usr/share/cdbs/1/class/autotools.mk