~ubuntu-branches/debian/lenny/exiv2/lenny

« back to all changes in this revision

Viewing changes to config/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-06-21 08:23:53 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080621082353-b1n4w08trwfwbfl4
Tags: 0.17.1-1
* New upstream release
  - Library transition cleared on debian-release/ d-d-a
* Version 0.17 also fixes:
  - CVE-2008-2696: DoS via metadata in images (Closes: #486328)
  - crashes when fed with wrong file (Closes: #485670)
* Urgency medium for CVE fix
* debian/patches/gcc4.3.diff unecessary for gcc-4.3
* Add /usr/share/bug/exiv2/presubj message for reportbug(1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# ***************************************************** -*- Makefile -*-
 
2
#
 
3
# Copyright (C) 2004-2008 Andreas Huggel <ahuggel@gmx.net>
 
4
#
 
5
# This Makefile is part of the Exiv2 distribution.
 
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
#
 
11
#    1. Redistributions of source code must retain the above copyright
 
12
#       notice, this list of conditions and the following disclaimer.
 
13
#    2. Redistributions in binary form must reproduce the above
 
14
#       copyright notice, this list of conditions and the following
 
15
#       disclaimer in the documentation and/or other materials provided
 
16
#       with the distribution.
 
17
#    3. The name of the author may not be used to endorse or promote
 
18
#       products derived from this software without specific prior
 
19
#       written permission.
 
20
#
 
21
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 
22
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
23
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
24
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 
25
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
26
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 
27
# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
28
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
 
29
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 
30
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 
31
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
32
#
 
33
# File:      Makefile.in
 
34
# Version:   $Rev: 1366 $
 
35
# Author(s): Andreas Huggel (ahu) <ahuggel@gmx.net>
 
36
# History:   15-Jan-04, ahu: created
 
37
#
 
38
# Description:
 
39
#  Simple top-level makefile that mainly forwards to makefiles in 
 
40
#  subdirectories.
 
41
#
 
42
# Restrictions:
 
43
#  Requires GNU make.
 
44
#
 
45
 
 
46
########################################################################
 
47
# Makefile is a generated file. Do NOT change any settings in this file.
 
48
# Run ./configure with the appropriate options to regenerate the file
 
49
# and possibly others.
 
50
########################################################################
 
51
 
 
52
SHELL = /bin/sh
 
53
ENABLE_XMP = @ENABLE_XMP@
 
54
 
 
55
.PHONY: all doc config samples xmpsdk                \
 
56
        mostlyclean clean distclean maintainer-clean \
 
57
        install uninstall
 
58
 
 
59
all install: config/config.mk xmpsdk
 
60
        cd src && $(MAKE) $(MAKECMDGOALS)
 
61
        cd po && $(MAKE) $(MAKECMDGOALS)
 
62
 
 
63
uninstall: config/config.mk
 
64
        cd src && $(MAKE) $(MAKECMDGOALS)
 
65
        cd po && $(MAKE) $(MAKECMDGOALS)
 
66
 
 
67
doc: config/config.mk
 
68
        cd doc && $(MAKE) $(MAKECMDGOALS)
 
69
 
 
70
samples: config/config.mk
 
71
        cd samples && $(MAKE) $(MAKECMDGOALS)
 
72
 
 
73
config:
 
74
        cd config && $(MAKE) -f config.make $(MAKECMDGOALS)
 
75
 
 
76
xmpsdk: config/config.mk
 
77
        if test "x$(ENABLE_XMP)" = "x1"; then cd xmpsdk/src && $(MAKE) $@; fi;
 
78
 
 
79
mostlyclean clean: config/config.mk
 
80
        cd src && $(MAKE) $(MAKECMDGOALS)
 
81
        cd doc && $(MAKE) $(MAKECMDGOALS)
 
82
        cd samples && $(MAKE) $(MAKECMDGOALS)
 
83
        cd xmpsdk/src && $(MAKE) $(MAKECMDGOALS)
 
84
        cd config && $(MAKE) -f config.make $(MAKECMDGOALS)
 
85
        cd po && $(MAKE) $(MAKECMDGOALS)
 
86
 
 
87
# `make distclean' also removes files created by configuring 
 
88
# the program. Running `make all distclean' prepares the project 
 
89
# for packaging.
 
90
distclean: clean
 
91
        rm -f config.log config.status libtool
 
92
        rm -f *~ *.bak *#
 
93
 
 
94
# This removes almost everything, including the configure script!
 
95
maintainer-clean: distclean
 
96
        rm -f configure
 
97
 
 
98
config/config.mk: 
 
99
        $(error File config/config.mk does not exist. Did you run ./configure?)