~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to srclib/apr-util/xml/expat/lib/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
################################################################
 
2
# Process this file with top-level configure script to produce Makefile
 
3
#
 
4
# Copyright 2000 Clark Cooper
 
5
#
 
6
#  This file is part of EXPAT.
 
7
#
 
8
#  EXPAT is free software; you can redistribute it and/or modify it
 
9
#  under the terms of the License (based on the MIT/X license) contained
 
10
#  in the file COPYING that comes with this distribution.
 
11
#
 
12
# EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
13
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
14
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 
15
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 
16
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 
17
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 
18
# SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT.
 
19
#
 
20
 
 
21
 
 
22
SHELL = @SHELL@
 
23
 
 
24
srcdir = @srcdir@
 
25
top_srcdir = @top_srcdir@
 
26
VPATH = @srcdir@
 
27
prefix = @prefix@
 
28
exec_prefix = @exec_prefix@
 
29
 
 
30
blddir = @blddir@/lib
 
31
bindir = @bindir@
 
32
sbindir = @sbindir@
 
33
libexecdir = @libexecdir@
 
34
datadir = @datadir@
 
35
sysconfdir = @sysconfdir@
 
36
sharedstatedir = @sharedstatedir@
 
37
localstatedir = @localstatedir@
 
38
libdir = @libdir@
 
39
infodir = @infodir@
 
40
mandir = @mandir@
 
41
includedir = @includedir@
 
42
oldincludedir = /usr/include
 
43
 
 
44
subdir = lib
 
45
 
 
46
top_builddir = ..
 
47
 
 
48
INSTALL = @INSTALL@
 
49
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
50
INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
51
INSTALL_DATA = @INSTALL_DATA@
 
52
 
 
53
host_alias = @host_alias@
 
54
host_triplet = @host@
 
55
AS = @AS@
 
56
CC = @CC@
 
57
DLLTOOL = @DLLTOOL@
 
58
LIBTOOL = @LIBTOOL@
 
59
LN_S = @LN_S@
 
60
OBJDUMP = @OBJDUMP@
 
61
PACKAGE = @PACKAGE@
 
62
RANLIB = @RANLIB@
 
63
VERSION = @VERSION@
 
64
 
 
65
LIBRARY = libexpat.la
 
66
SOURCES = xmlparse.c xmltok.c xmlrole.c
 
67
OBJECTS = $(SOURCES:.c=.o)
 
68
LTOBJECTS = $(SOURCES:.c=.lo)
 
69
 
 
70
TEMPLATES = xmltok_impl.c xmltok_ns.c
 
71
APIHEADER = expat.h
 
72
HEADERS = ascii.h iasciitab.h utf8tab.h xmltok.h asciitab.h latin1tab.h \
 
73
          nametab.h xmldef.h xmlrole.h xmltok_impl.h
 
74
 
 
75
mkinstalldirs = $(SHELL) $(top_srcdir)/conftools/mkinstalldirs
 
76
CONFIG_HEADER = ../config.h
 
77
CONFIG_CLEAN_FILES = 
 
78
 
 
79
INCLUDES = -I$(srcdir) -I.. -I$(blddir)
 
80
DEFS = @DEFS@ -DPACKAGE='"$(PACKAGE)"' -DVERSION='"$(PACKAGE)_$(VERSION)"'
 
81
 
 
82
CPPFLAGS = @CPPFLAGS@
 
83
LDFLAGS = @LDFLAGS@
 
84
LIBS = @LIBS@
 
85
CFLAGS = @CFLAGS@
 
86
 
 
87
LIBREVISION = @LIBREVISION@
 
88
LIBCURRENT  = @LIBCURRENT@
 
89
LIBAGE      = @LIBAGE@
 
90
 
 
91
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
 
92
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
 
93
CCLD = $(CC)
 
94
LINK = $(LIBTOOL) --mode=link  $(CCLD) -version-info $(LIBCURRENT):$(LIBREVISION):$(LIBAGE) $(CFLAGS) $(LDFLAGS) -o $@
 
95
DIST_COMMON =  Makefile.in
 
96
 
 
97
 
 
98
DISTFILES = $(DIST_COMMON) $(SOURCES) $(TEMPLATES) $(APIHEADER) $(HEADERS) 
 
99
 
 
100
TAR = gtar
 
101
GZIP_ENV = --best
 
102
 
 
103
all: $(LIBRARY)
 
104
 
 
105
.SUFFIXES: .c .lo .o
 
106
.PHONY: all clean distclean maintainer-clean
 
107
 
 
108
.c.o:
 
109
        $(COMPILE) -c $<
 
110
 
 
111
.c.lo:
 
112
        $(LTCOMPILE) -c $<
 
113
 
 
114
Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
 
115
        cd $(top_builddir) \
 
116
          && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
 
117
 
 
118
$(top_builddir)/config.status: $(top_builddir)/configure
 
119
        cd $(top_builddir) && $(MAKE) config.status
 
120
 
 
121
$(top_builddir)/config.h: $(top_builddir)/config.h.in
 
122
        cd $(top_builddir) && $(MAKE) config.h
 
123
 
 
124
clean:
 
125
        rm -f $(LIBRARY) *.o *.lo *~
 
126
        rm -rf .libs _libs
 
127
 
 
128
distclean: clean
 
129
        rm -f Makefile expat.h
 
130
 
 
131
maintainer-clean: distclean
 
132
 
 
133
install: $(LIBRARY) $(APIHEADER)
 
134
        $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
 
135
        $(LIBTOOL)  --mode=install $(INSTALL) $(LIBRARY) $(DESTDIR)$(libdir)/$(LIBRARY)
 
136
        $(INSTALL_DATA) $(APIHEADER) $(DESTDIR)$(includedir)
 
137
 
 
138
uninstall:
 
139
        $(LIBTOOL)  --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(LIBRARY);
 
140
        rm -f $(DESTDIR)$(libdir)/$(APIHEADER)
 
141
 
 
142
$(LIBRARY): $(LTOBJECTS)
 
143
        $(LINK) -rpath $(libdir) $(LDFLAGS) $(LTOBJECTS)
 
144
 
 
145
xmlparse.o \
 
146
xmlparse.lo: xmlparse.c expat.h xmlrole.h xmltok.h $(top_builddir)/config.h
 
147
 
 
148
xmlrole.o \
 
149
xmlrole.lo: xmlrole.c ascii.h xmlrole.h $(top_builddir)/config.h
 
150
 
 
151
xmltok.o \
 
152
xmltok.lo: xmltok.c xmltok_impl.c xmltok_ns.c \
 
153
          ascii.h asciitab.h iasciitab.h latin1tab.h nametab.h utf8tab.h \
 
154
          xmltok.h xmltok_impl.h $(top_builddir)/config.h