Merge branch 'debian' into hcoop_489
[hcoop/debian/exim4.git] / src / transports / Makefile
CommitLineData
420a0d19
CE
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
2813c06e 5OBJ = appendfile.o autoreply.o lmtp.o pipe.o queuefile.o smtp.o smtp_socks.o tf_maildir.o
420a0d19
CE
6
7transports.a: $(OBJ)
8 @$(RM_COMMAND) -f transports.a
9 @echo "$(AR) transports.a"
10 @$(AR) transports.a $(OBJ)
11 $(RANLIB) $@
12
13.SUFFIXES: .o .c
14.c.o:; @echo "$(CC) $*.c"
15 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
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
2813c06e 21queuefile.o: $(HDRS) queuefile.c queuefile.h
420a0d19 22smtp.o: $(HDRS) smtp.c smtp.h
2813c06e 23smtp_socks.o: $(HDRS) smtp_socks.c smtp.h
420a0d19
CE
24
25tf_maildir.o: $(HDRS) tf_maildir.c tf_maildir.h appendfile.h
26
27# End