~ubuntu-branches/ubuntu/karmic/tiff/karmic-security

« back to all changes in this revision

Viewing changes to port/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Fabio M. Di Nitto
  • Date: 2004-10-14 07:57:59 UTC
  • Revision ID: james.westby@ubuntu.com-20041014075759-a77e7zuaetya8cp0
Tags: upstream-3.6.1
ImportĀ upstreamĀ versionĀ 3.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! smake
 
2
#       $Header: /cvsroot/osrs/libtiff/port/Makefile.in,v 1.4 2001/12/07 16:32:08 warmerda Exp $
 
3
#
 
4
# @WARNING@
 
5
#
 
6
# Tag Image File Format Library
 
7
#
 
8
# Copyright (c) 1995-1997 Sam Leffler
 
9
# Copyright (c) 1995-1997 Silicon Graphics, Inc.
 
10
 
11
# Permission to use, copy, modify, distribute, and sell this software and 
 
12
# its documentation for any purpose is hereby granted without fee, provided
 
13
# that (i) the above copyright notices and this permission notice appear in
 
14
# all copies of the software and related documentation, and (ii) the names of
 
15
# Sam Leffler and Silicon Graphics may not be used in any advertising or
 
16
# publicity relating to the software without the specific, prior written
 
17
# permission of Sam Leffler and Silicon Graphics.
 
18
 
19
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
 
20
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
 
21
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
 
22
 
23
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
 
24
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
 
25
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 
26
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
 
27
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
 
28
# OF THIS SOFTWARE.
 
29
#
 
30
SRCDIR  = @RELSRCDIR@/port
 
31
VPATH   = @RELSRCDIR@/port
 
32
 
 
33
#
 
34
# VERSION:      @VERSION@
 
35
# DATE:         @DATE@
 
36
# TARGET:       @TARGET@
 
37
# CCOMPILER:    @CCOMPILER@
 
38
#
 
39
 
 
40
SHELL   = @SCRIPT_SH@
 
41
SCRIPT_SH = @SCRIPT_SH@
 
42
NULL    =
 
43
CC      = @CCOMPILER@
 
44
AR      = @AR@
 
45
AROPTS  = @AROPTS@
 
46
RANLIB  = @RANLIB@
 
47
 
 
48
IPATH   = -I. -I${SRCDIR}
 
49
COPTS   = @GCOPTS@
 
50
OPTIMIZER=@OPTIMIZER@
 
51
CFLAGS  = @ENVOPTS@ ${COPTS} ${OPTIMIZER} ${IPATH}
 
52
 
 
53
CFILES  = @PORTFUNCS@
 
54
OBJECTS = ${CFILES:.c=.o}
 
55
TARGETS = libport.a
 
56
 
 
57
default all: ${TARGETS}
 
58
 
 
59
libport.a: ${OBJECTS}
 
60
        @rm -f $@;
 
61
        ${AR} ${AROPTS} $@ ${OBJECTS}
 
62
        ${RANLIB} $@
 
63
${PORT}/libport.a: libport.a
 
64
 
 
65
install: default
 
66
 
 
67
clean:
 
68
        rm -f ${TARGETS} ${OBJECTS} core a.out