Another wish.
[exim.git] / src / src / routers / Makefile
1 # $Cambridge: exim/src/src/routers/Makefile,v 1.1 2004/10/07 13:10:02 ph10 Exp $
2
3 # Make file for building a library containing all the available routers and
4 # calling it routers.a. This is called from the main make file, after cd'ing
5 # to the directors subdirectory. The library also contains functions that
6 # are called only from within the individual routers.
7
8 OBJ = accept.o dnslookup.o ipliteral.o iplookup.o manualroute.o \
9 queryprogram.o redirect.o \
10 rf_change_domain.o rf_expand_data.o rf_get_errors_address.o \
11 rf_get_munge_headers.o rf_get_transport.o rf_get_ugid.o \
12 rf_lookup_hostlist.o \
13 rf_queue_add.o rf_self_action.o \
14 rf_set_ugid.o
15
16 routers.a: $(OBJ)
17 /bin/rm -f routers.a
18 $(AR) routers.a $(OBJ)
19 $(RANLIB) $@
20 /bin/rm -rf ../drtables.o
21
22 .SUFFIXES: .o .c
23 .c.o:; $(CC) -c $(CFLAGS) $(INCLUDE) $*.c
24
25 rf_change_domain.o: $(HDRS) rf_change_domain.c rf_functions.h
26 rf_expand_data.o: $(HDRS) rf_expand_data.c rf_functions.h
27 rf_get_errors_address.o: $(HDRS) rf_get_errors_address.c rf_functions.h
28 rf_get_munge_headers.o: $(HDRS) rf_get_munge_headers.c rf_functions.h
29 rf_get_transport.o: $(HDRS) rf_get_transport.c rf_functions.h
30 rf_get_ugid.o: $(HDRS) rf_get_ugid.c rf_functions.h
31 rf_lookup_hostlist.o: $(HDRS) rf_lookup_hostlist.c rf_functions.h
32 rf_queue_add.o: $(HDRS) rf_queue_add.c rf_functions.h
33 rf_self_action.o: $(HDRS) rf_self_action.c rf_functions.h
34 rf_set_ugid.o: $(HDRS) rf_set_ugid.c rf_functions.h
35
36 accept.o: $(HDRS) accept.c rf_functions.h accept.h
37 dnslookup.o: $(HDRS) dnslookup.c rf_functions.h dnslookup.h
38 ipliteral.o: $(HDRS) ipliteral.c rf_functions.h ipliteral.h
39 iplookup.o: $(HDRS) iplookup.c rf_functions.h iplookup.h
40 manualroute.o: $(HDRS) manualroute.c rf_functions.h manualroute.h
41 queryprogram.o: $(HDRS) queryprogram.c rf_functions.h queryprogram.h
42 redirect.o: $(HDRS) redirect.c rf_functions.h redirect.h
43
44 # End