X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/c86f62585c172e92377d4a5d58b754ed72094cc3..8eb9f5bd19da786f304f79b8f24381bbb4829310:/src/src/pcre/Makefile diff --git a/src/src/pcre/Makefile b/src/src/pcre/Makefile deleted file mode 100644 index c6562de3c..000000000 --- a/src/src/pcre/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# $Cambridge: exim/src/src/pcre/Makefile,v 1.1 2004/10/07 13:04:13 ph10 Exp $ - -# Makefile for PCRE (Perl-Compatible Regular Expression) library for use by -# Exim. This is a tailored Makefile, not the normal one that comes with the -# PCRE distribution. - -# These variables are in practice overridden from the Exim Makefile. - -AR = ar cq -CC = gcc -O2 -Wall -CFLAGS = -RANLIB = @true - -############################################################################## - -OBJ = maketables.o get.o pcre.o study.o - -all: libpcre.a ../pcretest - -../pcretest: libpcre.a pcretest.o - $(CC) $(CFLAGS) -o ../pcretest pcretest.o libpcre.a - -libpcre.a: $(OBJ) - -rm -f libpcre.a - $(AR) libpcre.a $(OBJ) - $(RANLIB) libpcre.a - -pcre.o: chartables.c pcre.c config.h pcre.h internal.h Makefile - $(CC) -c $(CFLAGS) pcre.c - -maketables.o: maketables.c config.h pcre.h internal.h Makefile - $(CC) -c $(CFLAGS) maketables.c - -get.o: get.c pcre.h config.h internal.h Makefile - $(CC) -c $(CFLAGS) get.c - -study.o: study.c pcre.h config.h internal.h Makefile - $(CC) -c $(CFLAGS) study.c - -pcretest.o: pcretest.c config.h pcre.h internal.h Makefile - $(CC) -c -DNOPOSIX $(CFLAGS) -I. pcretest.c - -# An auxiliary program makes the default character table source - -chartables.c: dftables - ./dftables chartables.c - -dftables: dftables.c maketables.c config.h pcre.h internal.h Makefile - $(CC) -o dftables $(CFLAGS) dftables.c - -# End