Another wish.
[exim.git] / src / src / routers / Makefile
CommitLineData
0756eb3c
PH
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
8OBJ = 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
16routers.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
25rf_change_domain.o: $(HDRS) rf_change_domain.c rf_functions.h
26rf_expand_data.o: $(HDRS) rf_expand_data.c rf_functions.h
27rf_get_errors_address.o: $(HDRS) rf_get_errors_address.c rf_functions.h
28rf_get_munge_headers.o: $(HDRS) rf_get_munge_headers.c rf_functions.h
29rf_get_transport.o: $(HDRS) rf_get_transport.c rf_functions.h
30rf_get_ugid.o: $(HDRS) rf_get_ugid.c rf_functions.h
31rf_lookup_hostlist.o: $(HDRS) rf_lookup_hostlist.c rf_functions.h
32rf_queue_add.o: $(HDRS) rf_queue_add.c rf_functions.h
33rf_self_action.o: $(HDRS) rf_self_action.c rf_functions.h
34rf_set_ugid.o: $(HDRS) rf_set_ugid.c rf_functions.h
35
36accept.o: $(HDRS) accept.c rf_functions.h accept.h
37dnslookup.o: $(HDRS) dnslookup.c rf_functions.h dnslookup.h
38ipliteral.o: $(HDRS) ipliteral.c rf_functions.h ipliteral.h
39iplookup.o: $(HDRS) iplookup.c rf_functions.h iplookup.h
40manualroute.o: $(HDRS) manualroute.c rf_functions.h manualroute.h
41queryprogram.o: $(HDRS) queryprogram.c rf_functions.h queryprogram.h
42redirect.o: $(HDRS) redirect.c rf_functions.h redirect.h
43
44# End