~ubuntu-branches/ubuntu/trusty/icon-slicer/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Arvind Autar
  • Date: 2004-05-26 01:09:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040526010946-38obrknd6gqkkzsj
Tags: 0.3-1
Initial Release.

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
# GNU copyright 1997 to 1999 by Joey Hess.
 
5
 
 
6
# Uncomment this to turn on verbose mode.
 
7
#export DH_VERBOSE=1
 
8
 
 
9
# These are used for cross-compiling and for saving the configure script
 
10
# from having to guess our platform (since we know it already)
 
11
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 
12
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
13
 
 
14
 
 
15
CFLAGS = -Wall -g
 
16
 
 
17
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 
18
        CFLAGS += -O0
 
19
else
 
20
        CFLAGS += -O2
 
21
endif
 
22
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
 
23
        INSTALL_PROGRAM += -s
 
24
endif
 
25
 
 
26
config.status: configure
 
27
        dh_testdir
 
28
        # Add here commands to configure the package.
 
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
 
 
38
        $(MAKE) 
 
39
 
 
40
        touch build-stamp
 
41
 
 
42
clean:
 
43
        dh_testdir
 
44
        dh_testroot
 
45
        rm -f build-stamp 
 
46
 
 
47
        # Add here commands to clean up after the build process.
 
48
#       $(MAKE) distclean
 
49
        
 
50
 
 
51
 
 
52
        dh_clean 
 
53
 
 
54
install: build
 
55
        dh_testdir
 
56
        dh_testroot
 
57
#       dh_clean -k 
 
58
        dh_installdirs
 
59
 
 
60
        # Add here commands to install the package into debian/icon-slicer.
 
61
        $(MAKE) install DESTDIR=$(CURDIR)/debian/icon-slicer
 
62
 
 
63
# Build architecture-independent files here.
 
64
binary-indep: build install
 
65
# We have nothing to do by default.
 
66
 
 
67
# Build architecture-dependent files here.
 
68
binary-arch: build install
 
69
        dh_testdir
 
70
        dh_testroot
 
71
        dh_installchangelogs ChangeLog
 
72
        dh_installdocs
 
73
        dh_installexamples examples/sample*
 
74
        dh_install
 
75
        dh_installman
 
76
        dh_link
 
77
        dh_strip
 
78
        dh_compress
 
79
        dh_fixperms
 
80
        dh_makeshlibs
 
81
        dh_installdeb
 
82
        dh_shlibdeps
 
83
        dh_gencontrol
 
84
        dh_md5sums
 
85
        dh_builddeb
 
86
 
 
87
binary: binary-indep binary-arch
 
88
.PHONY: config.status build binary-indep binary-arch binary install clean