X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=src%2Fsrc%2Fpcre%2FMakefile;h=451ca2019db40641b960d7ec1e9d7b970ffe9346;hp=c6562de3c5b92454f2e38cc135f03b088e360e11;hb=c1ac69960f6c08393233fe99fe44a1c99373e6df;hpb=c9f149f54159a21512e6cd88df8f23a30a5fd038;ds=sidebyside diff --git a/src/src/pcre/Makefile b/src/src/pcre/Makefile index c6562de3c..451ca2019 100644 --- a/src/src/pcre/Makefile +++ b/src/src/pcre/Makefile @@ -1,4 +1,4 @@ -# $Cambridge: exim/src/src/pcre/Makefile,v 1.1 2004/10/07 13:04:13 ph10 Exp $ +# $Cambridge: exim/src/src/pcre/Makefile,v 1.2 2005/05/17 09:53:35 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 @@ -18,27 +18,34 @@ 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 + @echo "$(CC) -o pcretest" + $(FE)$(CC) $(CFLAGS) -o ../pcretest pcretest.o libpcre.a libpcre.a: $(OBJ) -rm -f libpcre.a - $(AR) libpcre.a $(OBJ) + @echo "$(AR) libpcre.a" + $(FE)$(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 + @echo "$(CC) pcre.c" + $(FE)$(CC) -c $(CFLAGS) pcre.c maketables.o: maketables.c config.h pcre.h internal.h Makefile - $(CC) -c $(CFLAGS) maketables.c + @echo "$(CC) maketables.c" + $(FE)$(CC) -c $(CFLAGS) maketables.c get.o: get.c pcre.h config.h internal.h Makefile - $(CC) -c $(CFLAGS) get.c + @echo "$(CC) get.c" + $(FE)$(CC) -c $(CFLAGS) get.c study.o: study.c pcre.h config.h internal.h Makefile - $(CC) -c $(CFLAGS) study.c + @echo "$(CC) study.c" + $(FE)$(CC) -c $(CFLAGS) study.c pcretest.o: pcretest.c config.h pcre.h internal.h Makefile - $(CC) -c -DNOPOSIX $(CFLAGS) -I. pcretest.c + @echo "$(CC) pcretest.c" + $(FE)$(CC) -c -DNOPOSIX $(CFLAGS) -I. pcretest.c # An auxiliary program makes the default character table source @@ -46,6 +53,7 @@ chartables.c: dftables ./dftables chartables.c dftables: dftables.c maketables.c config.h pcre.h internal.h Makefile - $(CC) -o dftables $(CFLAGS) dftables.c + @echo "$(CC) -o dftables dftables.c" + $(FE)$(CC) -o dftables $(CFLAGS) dftables.c # End