Fix typo in pcre/Makefile.
[exim.git] / src / src / pcre / Makefile
1 # $Cambridge: exim/src/src/pcre/Makefile,v 1.5 2005/10/03 09:56:42 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 @echo "$(CC) -o ../pcretest pcretest.o libpcre.a"
24 $(FE)$(CC) $(CFLAGS) -o ../pcretest pcretest.o libpcre.a
25
26 libpcre.a: $(OBJ)
27 -rm -f libpcre.a
28 @echo "$(AR) libpcre.a"
29 $(FE)$(AR) libpcre.a $(OBJ)
30 $(RANLIB) libpcre.a
31
32 chartables.o: chartables.c pcre_compile.c config.h pcre.h pcre_internal.h Makefile
33 @echo "$(CC) chartables.c"
34 $(FE)$(CC) -c $(CFLAGS) chartables.c
35
36 pcre_compile.o: pcre_compile.c config.h pcre.h pcre_internal.h Makefile
37 @echo "$(CC) pcre_compile.c"
38 $(FE)$(CC) -c $(CFLAGS) pcre_compile.c
39
40 pcre_config.o: pcre_config.c config.h pcre.h pcre_internal.h Makefile
41 @echo "$(CC) pcre_config.c"
42 $(FE)$(CC) -c $(CFLAGS) pcre_config.c
43
44 pcre_exec.o: chartables.c pcre_exec.c config.h pcre.h pcre_internal.h Makefile
45 @echo "$(CC) pcre_exec.c"
46 $(FE)$(CC) -c $(CFLAGS) pcre_exec.c
47
48 pcre_maketables.o: pcre_maketables.c config.h pcre.h pcre_internal.h Makefile
49 @echo "$(CC) pcre_maketables.c"
50 $(FE)$(CC) -c $(CFLAGS) pcre_maketables.c
51
52 pcre_fullinfo.o: pcre_fullinfo.c pcre.h config.h pcre_internal.h Makefile
53 @echo "$(CC) pcre_fullinfo.c"
54 $(FE)$(CC) -c $(CFLAGS) pcre_fullinfo.c
55
56 pcre_get.o: pcre_get.c pcre.h config.h pcre_internal.h Makefile
57 @echo "$(CC) pcre_get.c"
58 $(FE)$(CC) -c $(CFLAGS) pcre_get.c
59
60 pcre_globals.o: pcre_globals.c pcre.h config.h pcre_internal.h Makefile
61 @echo "$(CC) pcre_globals.c"
62 $(FE)$(CC) -c $(CFLAGS) pcre_globals.c
63
64 pcre_printint.o: pcre_printint.c pcre.h config.h pcre_internal.h Makefile
65 @echo "$(CC) pcre_printint.c"
66 $(FE)$(CC) -c $(CFLAGS) pcre_printint.c
67
68 pcre_study.o: pcre_study.c pcre.h config.h pcre_internal.h Makefile
69 @echo "$(CC) pcre_study.c"
70 $(FE)$(CC) -c $(CFLAGS) pcre_study.c
71
72 pcre_tables.o: pcre_tables.c pcre.h config.h pcre_internal.h Makefile
73 @echo "$(CC) pcre_tables.c"
74 $(FE)$(CC) -c $(CFLAGS) pcre_tables.c
75
76 pcre_try_flipped.o: pcre_try_flipped.c pcre.h config.h pcre_internal.h Makefile
77 @echo "$(CC) pcre_try_flipped.c"
78 $(FE)$(CC) -c $(CFLAGS) pcre_try_flipped.c
79
80 pcre_version.o: pcre_version.c config.h pcre.h pcre_internal.h Makefile
81 @echo "$(CC) pcre_version.c"
82 $(FE)$(CC) -c $(CFLAGS) pcre_version.c
83
84 pcretest.o: pcretest.c config.h pcre.h pcre_internal.h Makefile
85 @echo "$(CC) pcretest.c"
86 $(FE)$(CC) -c -DNOPOSIX -DNODFA -DNOUTF8 -DNOINFOCHECK $(CFLAGS) -I. pcretest.c
87
88 # An auxiliary program makes the default character table source
89
90 chartables.c: dftables
91 ./dftables chartables.c
92
93 dftables: dftables.c pcre_maketables.c config.h pcre.h pcre_internal.h Makefile
94 @echo "$(CC) dftables.c"
95 $(FE)$(CC) -o dftables $(CFLAGS) dftables.c
96
97 # End