X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=src%2Fsrc%2Fauths%2FMakefile;h=f4a05648b1763d99ad22887dcf8c6ccc3c8b1d88;hp=e3f73cab369363b9a05b86974b01321b425f2cc8;hb=c1ac69960f6c08393233fe99fe44a1c99373e6df;hpb=c9f149f54159a21512e6cd88df8f23a30a5fd038;ds=sidebyside diff --git a/src/src/auths/Makefile b/src/src/auths/Makefile index e3f73ca..f4a0564 100644 --- a/src/src/auths/Makefile +++ b/src/src/auths/Makefile @@ -1,4 +1,4 @@ -# $Cambridge: exim/src/src/auths/Makefile,v 1.1 2004/10/07 13:10:00 ph10 Exp $ +# $Cambridge: exim/src/src/auths/Makefile,v 1.2 2005/05/17 09:53:34 ph10 Exp $ # Make file for building a library containing all the available authorization # methods, and calling it auths.a. In addition, there are functions that are @@ -12,13 +12,15 @@ OBJ = b64encode.o b64decode.o call_pam.o call_pwcheck.o call_radius.o \ cram_md5.o cyrus_sasl.o plaintext.o pwcheck.o sha1.o auth-spa.o spa.o auths.a: $(OBJ) - /bin/rm -f auths.a - $(AR) auths.a $(OBJ) + @/bin/rm -f auths.a + @echo "$(AR) auths.a" + $(FE)$(AR) auths.a $(OBJ) $(RANLIB) $@ - /bin/rm -rf ../drtables.o + @/bin/rm -rf ../drtables.o .SUFFIXES: .o .c -.c.o:; $(CC) -c $(CFLAGS) $(INCLUDE) $*.c +.c.o:; @echo "$(CC) $*.c" + $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c auth-spa.o: $(HDRS) auth-spa.c b64encode.o: $(HDRS) b64encode.c