Installed PCRE 6.0 sources, which involved adding a number of files and
[exim.git] / src / src / pcre / Makefile
1 # $Cambridge: exim/src/src/pcre/Makefile,v 1.3 2005/06/15 08:57:10 ph10 Exp $
2
3 # Makefile for PCRE (Perl-Compatible Regular Expression) library for use by
4 # Exim. This is a tailored Makefile, not the normal one that comes with the
5 # PCRE distribution.
6
7 # These variables are in practice overridden from the Exim Makefile.
8
9 AR = ar cq
10 CC = gcc -O2 -Wall
11 CFLAGS =
12 RANLIB = @true
13
14 ##############################################################################
15
16 OBJ = pcre_maketables.o chartables.o pcre_fullinfo.o pcre_get.o \
17       pcre_globals.o pcre_compile.o pcre_config.o pcre_exec.o pcre_printint.o \
18       pcre_study.o pcre_tables.o pcre_try_flipped.o pcre_version.o
19
20 all:            libpcre.a ../pcretest
21
22 ../pcretest: libpcre.a pcretest.o
23                 $(CC) $(CFLAGS) -o ../pcretest pcretest.o libpcre.a
24
25 libpcre.a:      $(OBJ)
26                 -rm -f libpcre.a
27                 $(AR) libpcre.a $(OBJ)
28                 $(RANLIB) libpcre.a
29
30 chartables.o:   chartables.c pcre_compile.c config.h pcre.h pcre_internal.h Makefile
31                 $(CC) -c $(CFLAGS) chartables.c
32
33 pcre_compile.o: pcre_compile.c config.h pcre.h pcre_internal.h Makefile
34                 $(CC) -c $(CFLAGS) pcre_compile.c
35
36 pcre_config.o:  pcre_config.c config.h pcre.h pcre_internal.h Makefile
37                 $(CC) -c $(CFLAGS) pcre_config.c
38
39 pcre_exec.o:    chartables.c pcre_exec.c config.h pcre.h pcre_internal.h Makefile
40                 $(CC) -c $(CFLAGS) pcre_exec.c
41
42 pcre_maketables.o: pcre_maketables.c config.h pcre.h pcre_internal.h Makefile
43                 $(CC) -c $(CFLAGS) pcre_maketables.c
44
45 pcre_fullinfo.o: pcre_fullinfo.c pcre.h config.h pcre_internal.h Makefile
46                 $(CC) -c $(CFLAGS) pcre_fullinfo.c
47
48 pcre_get.o:     pcre_get.c pcre.h config.h pcre_internal.h Makefile
49                 $(CC) -c $(CFLAGS) pcre_get.c
50
51 pcre_globals.:  pcre_globals.c pcre.h config.h pcre_internal.h Makefile
52                 $(CC) -c $(CFLAGS) pcre_globals.c
53
54 pcre_printint.o: pcre_printint.c pcre.h config.h pcre_internal.h Makefile
55                 $(CC) -c $(CFLAGS) pcre_printint.c
56
57 pcre_study.o:   pcre_study.c pcre.h config.h pcre_internal.h Makefile
58                 $(CC) -c $(CFLAGS) pcre_study.c
59
60 pcre_tables.o:   pcre_tables.c pcre.h config.h pcre_internal.h Makefile
61                 $(CC) -c $(CFLAGS) pcre_tables.c
62
63 pcre_try_flipped.o: pcre_try_flipped.c pcre.h config.h pcre_internal.h Makefile
64                 $(CC) -c $(CFLAGS) pcre_try_flipped.c
65
66 pcre_version.o: pcre_version.c config.h pcre.h pcre_internal.h Makefile
67                 $(CC) -c $(CFLAGS) pcre_version.c
68
69 pcretest.o:     pcretest.c config.h pcre.h pcre_internal.h Makefile
70                 $(CC) -c -DNOPOSIX -DNODFA -DNOUTF8 -DNOINFOCHECK $(CFLAGS) -I. pcretest.c
71
72 # An auxiliary program makes the default character table source
73
74 chartables.c:   dftables
75                 ./dftables chartables.c
76
77 dftables:       dftables.c pcre_maketables.c config.h pcre.h pcre_internal.h Makefile
78                 $(CC) -o dftables $(CFLAGS) dftables.c
79
80 # End