X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fauths%2FMakefile;h=c6ef218b27b4695e27ccb7ef71159c9c43a4caa3;hb=57eb9e91fe084ad434fcc286f0135e89b658c213;hp=3df035dd39dabcf00a1d2f690639fa8fee040b74;hpb=16ff981e58427ae8bd5e8420411a9978678841e4;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/auths/Makefile b/src/src/auths/Makefile index 3df035dd3..c6ef218b2 100644 --- a/src/src/auths/Makefile +++ b/src/src/auths/Makefile @@ -1,5 +1,3 @@ -# $Cambridge: exim/src/src/auths/Makefile,v 1.5 2006/10/16 15:44:36 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 # of general use in several methods; these are in separate modules so they are @@ -9,7 +7,8 @@ OBJ = auth-spa.o b64decode.o b64encode.o call_pam.o call_pwcheck.o \ call_radius.o check_serv_cond.o cram_md5.o cyrus_sasl.o dovecot.o \ - get_data.o get_no64_data.o md5.o plaintext.o pwcheck.o sha1.o \ + get_data.o get_no64_data.o gsasl_exim.o heimdal_gssapi.o \ + md5.o plaintext.o pwcheck.o sha1.o \ spa.o xtextdecode.o xtextencode.o auths.a: $(OBJ) @@ -17,7 +16,6 @@ auths.a: $(OBJ) @echo "$(AR) auths.a" $(FE)$(AR) auths.a $(OBJ) $(RANLIB) $@ - @$(RM_COMMAND) -rf ../drtables.o .SUFFIXES: .o .c .c.o:; @echo "$(CC) $*.c" @@ -41,6 +39,8 @@ xtextencode.o: $(HDRS) xtextencode.c cram_md5.o: $(HDRS) cram_md5.c cram_md5.h cyrus_sasl.o: $(HDRS) cyrus_sasl.c cyrus_sasl.h dovecot.o: $(HDRS) dovecot.c dovecot.h +gsasl_exim.o: $(HDRS) gsasl_exim.c gsasl_exim.h +heimdal_gssapi.o: $(HDRS) heimdal_gssapi.c heimdal_gssapi.h plaintext.o: $(HDRS) plaintext.c plaintext.h spa.o: $(HDRS) spa.c spa.h