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.
5 OBJ = appendfile.o autoreply.o lmtp.o pipe.o smtp.o tf_maildir.o
8 @$(RM_COMMAND) -f transports.a
9 @echo "$(AR) transports.a"
10 @$(AR) transports.a $(OBJ)
14 .c.o:; @echo "$(CC) $*.c"
15 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) $*.c
17 appendfile.o: $(HDRS) appendfile.c appendfile.h tf_maildir.h
18 autoreply.o: $(HDRS) autoreply.c autoreply.h
19 lmtp.o: $(HDRS) lmtp.c lmtp.h
20 pipe.o: $(HDRS) pipe.c pipe.h
21 smtp.o: $(HDRS) smtp.c smtp.h
23 tf_maildir.o: $(HDRS) tf_maildir.c tf_maildir.h appendfile.h