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

« back to all changes in this revision

Viewing changes to srclib/apr-util/xml/expat/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
#  I started using automake, but
 
22
#               1) it seemed like overkill
 
23
#               2) I don't want all the GNU policies
 
24
#               3) I wanted more explicit control over what gets built
 
25
#
 
26
#  So I'm doing my Makefile.in files manually. But a fair part is based
 
27
#  on what I learned from perusing the Makefile.in's generated by automake,
 
28
#  and the automake authors still get my kudos.
 
29
#
 
30
 
 
31
SHELL = @SHELL@
 
32
 
 
33
srcdir = @srcdir@
 
34
top_srcdir = @top_srcdir@
 
35
VPATH = @srcdir@
 
36
prefix = @prefix@
 
37
exec_prefix = @exec_prefix@
 
38
 
 
39
bindir = @bindir@
 
40
sbindir = @sbindir@
 
41
libexecdir = @libexecdir@
 
42
datadir = @datadir@
 
43
sysconfdir = @sysconfdir@
 
44
sharedstatedir = @sharedstatedir@
 
45
localstatedir = @localstatedir@
 
46
libdir = @libdir@
 
47
infodir = @infodir@
 
48
mandir = @mandir@
 
49
includedir = @includedir@
 
50
oldincludedir = /usr/include
 
51
 
 
52
top_builddir = .
 
53
 
 
54
 
 
55
AUTOCONF = autoconf
 
56
 
 
57
INSTALL = @INSTALL@
 
58
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
59
INSTALL_DATA = @INSTALL_DATA@
 
60
INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
61
 
 
62
NORMAL_INSTALL = :
 
63
PRE_INSTALL = :
 
64
POST_INSTALL = :
 
65
NORMAL_UNINSTALL = :
 
66
PRE_UNINSTALL = :
 
67
POST_UNINSTALL = :
 
68
host_alias = @host_alias@
 
69
host_triplet = @host@
 
70
 
 
71
CC = @CC@
 
72
 
 
73
LIBTOOL = @LIBTOOL@
 
74
LN_S = @LN_S@
 
75
PACKAGE = @PACKAGE@
 
76
RANLIB = @RANLIB@
 
77
VERSION = @VERSION@
 
78
 
 
79
SUBDIRS = lib
 
80
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
81
CONFIG_HEADERS = config.h
 
82
 
 
83
DISTDIR = $(PACKAGE)-$(VERSION)
 
84
DISTRIBUTION = $(DISTDIR).tar.gz
 
85
 
 
86
all: build-subdirs
 
87
 
 
88
.PHONY: all build-subdirs clean distclean extraclean maintainer-clean dist install \
 
89
        uninstall distdir
 
90
 
 
91
Makefile: Makefile.in config.status
 
92
        CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) config.status
 
93
 
 
94
config.status: configure
 
95
        @if test -f $@; then \
 
96
                $(SHELL) config.status --recheck ; \
 
97
        else \
 
98
                $(SHELL) configure ; \
 
99
        fi
 
100
 
 
101
configure: configure.in
 
102
        $(AUTOCONF)
 
103
 
 
104
config.h: config.h.in config.status
 
105
        CONFIG_FILES= CONFIG_HEADERS=$(CONFIG_HEADERS) \
 
106
        $(SHELL) ./config.status
 
107
 
 
108
build-subdirs:
 
109
        @list='$(SUBDIRS)'; \
 
110
        for dir in $$list; do \
 
111
          cd $$dir; $(MAKE); cd ..; \
 
112
        done
 
113
 
 
114
clean:
 
115
        @list='$(SUBDIRS)'; for dir in $$list; do \
 
116
          cd $$dir; $(MAKE) clean; cd ..; \
 
117
        done
 
118
        rm -f core *~
 
119
 
 
120
distclean:
 
121
        @list='$(SUBDIRS)'; for dir in $$list; do \
 
122
          cd $$dir; $(MAKE) distclean; cd ..; \
 
123
        done
 
124
        rm -f config.h config.status config.log libtool examples/Makefile xmlwf/Makefile Makefile
 
125
 
 
126
extraclean: distclean
 
127
        rm -f configure aclocal.m4
 
128
 
 
129
maintainer-clean: distclean
 
130
        rm -f $(DISTRIBUTION)
 
131
        rm -rf $(DISTDIR)
 
132
 
 
133
distdir: MANIFEST
 
134
        test -d $(DISTDIR) && rm -rf $(DISTDIR); \
 
135
        mkdir $(DISTDIR); \
 
136
        flist=`sed -e "s/[      ]:.*$$//" MANIFEST`; for file in $$flist; do \
 
137
          cp -P $$file $(DISTDIR); \
 
138
        done
 
139
 
 
140
$(DISTRIBUTION): distdir
 
141
        tar cfz $(DISTRIBUTION) $(DISTDIR)      
 
142
 
 
143
dist: $(DISTRIBUTION)
 
144
 
 
145
install:
 
146
        @list='$(SUBDIRS)'; for dir in $$list; do \
 
147
          cd $$dir; $(MAKE) install; cd ..; \
 
148
        done
 
149
 
 
150
uninstall:
 
151
        @list='$(SUBDIRS)'; for dir in $$list; do \
 
152
          cd $$dir; $(MAKE) uninstall; cd ..; \
 
153
        done
 
154
 
 
155
depend:
 
156
        echo SOMEONE SHOULD MAKE THIS DO SOMETHING!!!