Add host detail on all deferred deliveries, not only the last one
[exim.git] / src / src / auths / Makefile
CommitLineData
0756eb3c
PH
1# Make file for building a library containing all the available authorization
2# methods, and calling it auths.a. In addition, there are functions that are
3# of general use in several methods; these are in separate modules so they are
4# linked in only when needed. This Makefile is called from the main make file,
5# after cd'ing to the auths subdirectory. When the relevant AUTH_ macros are
6# defined, the equivalent modules herein is not included in the final binary.
7
f4d091fb 8OBJ = auth-spa.o call_pam.o call_pwcheck.o \
16ff981e 9 call_radius.o check_serv_cond.o cram_md5.o cyrus_sasl.o dovecot.o \
dde3daac 10 get_data.o get_no64_data.o gsasl_exim.o heimdal_gssapi.o \
5fb822fc 11 md5.o plaintext.o pwcheck.o \
b3ef41c9 12 spa.o tls.o xtextdecode.o xtextencode.o
0756eb3c
PH
13
14auths.a: $(OBJ)
ebcb507f 15 @$(RM_COMMAND) -f auths.a
c1ac6996
PH
16 @echo "$(AR) auths.a"
17 $(FE)$(AR) auths.a $(OBJ)
0756eb3c 18 $(RANLIB) $@
0756eb3c
PH
19
20.SUFFIXES: .o .c
c1ac6996
PH
21.c.o:; @echo "$(CC) $*.c"
22 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
0756eb3c 23
16ff981e 24auth-spa.o: $(HDRS) auth-spa.c
16ff981e
PH
25call_pam.o: $(HDRS) call_pam.c
26call_pwcheck.o: $(HDRS) call_pwcheck.c pwcheck.h
27call_radius.o: $(HDRS) call_radius.c
28check_serv_cond.o: $(HDRS) check_serv_cond.c
29get_data.o: $(HDRS) get_data.c
30get_no64_data.o: $(HDRS) get_no64_data.c
31md5.o: $(HDRS) md5.c
32pwcheck.o: $(HDRS) pwcheck.c pwcheck.h
16ff981e
PH
33xtextdecode.o: $(HDRS) xtextdecode.c
34xtextencode.o: $(HDRS) xtextencode.c
0756eb3c 35
16ff981e
PH
36cram_md5.o: $(HDRS) cram_md5.c cram_md5.h
37cyrus_sasl.o: $(HDRS) cyrus_sasl.c cyrus_sasl.h
38dovecot.o: $(HDRS) dovecot.c dovecot.h
44bbabb5 39gsasl_exim.o: $(HDRS) gsasl_exim.c gsasl_exim.h
dde3daac 40heimdal_gssapi.o: $(HDRS) heimdal_gssapi.c heimdal_gssapi.h
16ff981e
PH
41plaintext.o: $(HDRS) plaintext.c plaintext.h
42spa.o: $(HDRS) spa.c spa.h
b3ef41c9 43tls.o: $(HDRS) tls.c tls.h
0756eb3c
PH
44
45# End