~ubuntu-branches/ubuntu/breezy/orca/breezy

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Abraham vd Merwe
  • Date: 2004-07-19 14:58:47 UTC
  • Revision ID: james.westby@ubuntu.com-20040719145847-hylhl4gvo1axsqcx
Tags: 0.2.3
* Link against latest libdebug (Closes: #231080)
* Changed package section (Closes: #159404)
* Added build-dependency on librrd0-dev (Closes: #182707)
* Updated debian policy version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# -*- sh -*-
 
3
 
 
4
#  Copyright (c) Abraham vd Merwe <abz@blio.com>
 
5
#  All rights reserved.
 
6
#
 
7
#  Redistribution and use in source and binary forms, with or without
 
8
#  modification, are permitted provided that the following conditions
 
9
#  are met:
 
10
#  1. Redistributions of source code must retain the above copyright
 
11
#     notice, this list of conditions and the following disclaimer.
 
12
#
 
13
#  2. Redistributions in binary form must reproduce the above copyright
 
14
#     notice, this list of conditions and the following disclaimer in the
 
15
#     documentation and/or other materials provided with the distribution.
 
16
#  3. Neither the name of the author nor the names of other contributors
 
17
#     may be used to endorse or promote products derived from this software
 
18
#     without specific prior written permission.
 
19
#
 
20
#  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
21
#  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
22
#  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
23
#  ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
24
#  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
25
#  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 
26
#  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
27
#  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 
28
#  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
29
#  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
30
 
 
31
# path to toplevel directory from here
 
32
TOPDIR = .
 
33
 
 
34
# subdirectories (leave as is if there is no subdirectories)
 
35
DIR = man src
 
36
 
 
37
# names of object files
 
38
OBJ =
 
39
 
 
40
# program name (leave as is if there is no program)
 
41
PRG =
 
42
 
 
43
# library name (leave as is if there is no library)
 
44
LIB =
 
45
 
 
46
include $(TOPDIR)/paths.mk
 
47
include $(TOPDIR)/defs.mk
 
48
include $(TOPDIR)/vars.mk
 
49
include $(TOPDIR)/rules.mk
 
50
 
 
51
.PHONY:: debian
 
52
 
 
53
debian:
 
54
        dpkg-buildpackage -rfakeroot -k2B555AEE
 
55
 
 
56
distclean::
 
57
        $(RM) {configure,build}-stamp
 
58
        $(RM) debian/*.{debhelper,substvars} debian/{substvars,files,*~}
 
59
        $(RM) -r debian/{tmp,orca}
 
60
        find . -name "*~" -exec rm -f {} \;
 
61
        find . -name ".index" -exec rm -f {} \;
 
62