1. Preserve underlying transport filter timeout message if a pipe
[exim.git] / src / src / transports / Makefile
CommitLineData
0756eb3c
PH
1# $Cambridge: exim/src/src/transports/Makefile,v 1.1 2004/10/07 13:10:02 ph10 Exp $
2
3# Make file for building a library containing all the available transports and
4# calling it transports.a. This is called from the main make file, after cd'ing
5# to the transports subdirectory.
6
7OBJ = appendfile.o autoreply.o lmtp.o pipe.o smtp.o tf_maildir.o
8
9transports.a: $(OBJ)
10 /bin/rm -f transports.a
11 $(AR) transports.a $(OBJ)
12 $(RANLIB) $@
13 /bin/rm -rf ../drtables.o
14
15.SUFFIXES: .o .c
16.c.o:; $(CC) -c $(CFLAGS) $(INCLUDE) $*.c
17
18appendfile.o: $(HDRS) appendfile.c appendfile.h tf_maildir.h
19autoreply.o: $(HDRS) autoreply.c autoreply.h
20lmtp.o: $(HDRS) lmtp.c lmtp.h
21pipe.o: $(HDRS) pipe.c pipe.h
22smtp.o: $(HDRS) smtp.c smtp.h
23
24tf_maildir.o: $(HDRS) tf_maildir.c tf_maildir.h appendfile.h
25
26# End