update to pre-4.87 master
[exim.git] / src / src / transports / Makefile
CommitLineData
0756eb3c
PH
1# Make file for building a library containing all the available transports and
2# calling it transports.a. This is called from the main make file, after cd'ing
3# to the transports subdirectory.
4
bfe645c1 5OBJ = appendfile.o autoreply.o lmtp.o pipe.o smtp.o smtp_socks.o tf_maildir.o
0756eb3c
PH
6
7transports.a: $(OBJ)
ebcb507f 8 @$(RM_COMMAND) -f transports.a
c1ac6996
PH
9 @echo "$(AR) transports.a"
10 @$(AR) transports.a $(OBJ)
0756eb3c 11 $(RANLIB) $@
0756eb3c
PH
12
13.SUFFIXES: .o .c
c1ac6996
PH
14.c.o:; @echo "$(CC) $*.c"
15 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
0756eb3c
PH
16
17appendfile.o: $(HDRS) appendfile.c appendfile.h tf_maildir.h
18autoreply.o: $(HDRS) autoreply.c autoreply.h
19lmtp.o: $(HDRS) lmtp.c lmtp.h
20pipe.o: $(HDRS) pipe.c pipe.h
21smtp.o: $(HDRS) smtp.c smtp.h
bfe645c1 22smtp_socks.o: $(HDRS) smtp_socks.c smtp.h
0756eb3c
PH
23
24tf_maildir.o: $(HDRS) tf_maildir.c tf_maildir.h appendfile.h
25
26# End