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

« back to all changes in this revision

Viewing changes to srclib/apr/test/internal/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
srcdir = @srcdir@
 
2
VPATH = @srcdir@
 
3
 
 
4
NONPORTABLE = \
 
5
        testregex@EXEEXT@
 
6
 
 
7
PROGRAMS = \
 
8
 
 
9
TARGETS = $(PROGRAMS) $(NONPORTABLE)
 
10
 
 
11
# bring in rules.mk for standard functionality
 
12
@INCLUDE_RULES@
 
13
 
 
14
LOCAL_LIBS=../../lib@APR_LIBNAME@.la
 
15
 
 
16
CLEAN_TARGETS = testregex@EXEEXT@
 
17
 
 
18
INCDIR=../../include
 
19
INCLUDES=-I$(INCDIR)
 
20
 
 
21
CFLAGS=$(MY_CFLAGS)
 
22
 
 
23
all: $(PROGRAMS) $(NONPORTABLE)
 
24
 
 
25
check: $(PROGRAMS) $(NONPORTABLE)
 
26
        for prog in $(PROGRAMS) $(NONPORTABLE); do \
 
27
                ./$$prog; \
 
28
                if test $$i = 255; then \
 
29
                        echo "$$prog failed"; \
 
30
                        break; \
 
31
                fi \
 
32
        done
 
33
 
 
34
testregex@EXEEXT@: testregex.lo $(LOCAL_LIBS)
 
35
        $(LINK) testregex.lo $(LOCAL_LIBS) $(ALL_LIBS)
 
36
 
 
37
# DO NOT REMOVE