Implemented gsasl driver for authentication.
[exim.git] / src / src / auths / Makefile
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
8 OBJ = auth-spa.o b64decode.o b64encode.o call_pam.o call_pwcheck.o \
9       call_radius.o check_serv_cond.o cram_md5.o cyrus_sasl.o dovecot.o \
10       get_data.o get_no64_data.o gsasl_exim.o \
11       md5.o plaintext.o pwcheck.o sha1.o \
12       spa.o xtextdecode.o xtextencode.o
13
14 auths.a:         $(OBJ)
15                  @$(RM_COMMAND) -f auths.a
16                  @echo "$(AR) auths.a"
17                  $(FE)$(AR) auths.a $(OBJ)
18                  $(RANLIB) $@
19
20 .SUFFIXES:       .o .c
21 .c.o:;           @echo "$(CC) $*.c"
22                  $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
23
24 auth-spa.o:         $(HDRS) auth-spa.c
25 b64encode.o:        $(HDRS) b64encode.c
26 b64decode.o:        $(HDRS) b64decode.c
27 call_pam.o:         $(HDRS) call_pam.c
28 call_pwcheck.o:     $(HDRS) call_pwcheck.c pwcheck.h
29 call_radius.o:      $(HDRS) call_radius.c
30 check_serv_cond.o:  $(HDRS) check_serv_cond.c
31 get_data.o:         $(HDRS) get_data.c
32 get_no64_data.o:    $(HDRS) get_no64_data.c
33 md5.o:              $(HDRS) md5.c
34 pwcheck.o:          $(HDRS) pwcheck.c pwcheck.h
35 sha1.o:             $(HDRS) sha1.c
36 xtextdecode.o:      $(HDRS) xtextdecode.c
37 xtextencode.o:      $(HDRS) xtextencode.c
38
39 cram_md5.o:         $(HDRS) cram_md5.c cram_md5.h
40 cyrus_sasl.o:       $(HDRS) cyrus_sasl.c cyrus_sasl.h
41 dovecot.o:          $(HDRS) dovecot.c dovecot.h
42 gsasl_exim.o:       $(HDRS) gsasl_exim.c gsasl_exim.h
43 plaintext.o:        $(HDRS) plaintext.c plaintext.h
44 spa.o:              $(HDRS) spa.c spa.h
45
46 # End