1 # This file is the basis of the main makefile for Exim and friends. The
2 # makefile at the top level arranges to build the main makefile by calling
3 # scripts/Configure-Makefile from within the build directory. This
4 # concatentates the configuration settings from Local/Makefile and other,
5 # optional, Local/* files at the front of this file, to create Makefile in the
10 EDITME = ../Local/Makefile
11 EXIMON_EDITME = ../Local/eximon.conf
13 # The compiler used for linking is normally the same as the compiler used for
14 # compiling. However, by giving it a different name, we can override it from
15 # the command line, and this is helpful for certain types of testing.
19 # The compile commands can be very long. To make the output look better,
20 # they are not normally echoed in full. To get full echoing, the caller
21 # must set FULLECHO='' on the command line and call make with -e. We default
22 # FULLECHO to '@' to suppress the full echo. Then define an abbreviation.
27 # The default target double-checks the existence of $(EDITME) and then arranges
28 # to touch it if it exists and any of the optional configuration files, which
29 # depend on the os or the architecture, have been altered. The same sub-target
30 # does the same thing for the eximon configuration file if it exists. Then
31 # there is a check that the Makefile (the one built from this file) is
32 # up-to-date. Then the os-specific source files and the C configuration file
33 # are set up, and finally it goes to the main Exim target.
35 all: $(EDITME) checklocalmake Makefile os.h os.c config.h version.h allexim
38 @if $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(OSTYPE) $(EDITME) || \
39 $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(ARCHTYPE) $(EDITME) || \
40 $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EDITME); \
44 @if $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(OSTYPE) $(EXIMON_EDITME) || \
45 $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(ARCHTYPE) $(EXIMON_EDITME) || \
46 $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EXIMON_EDITME); \
48 if [ -f $(EXIMON_EDITME) ]; then touch $(EXIMON_EDITME); fi \
53 @echo "*** Please create Local/Makefile by copying src/EDITME and making"
54 @echo "*** appropriate changes for your site."
60 @echo "*** Please create Local/eximon.conf by copying exim_monitor/EDITME and making"
61 @echo "*** appropriate changes for your site."
63 @test ! -d ../Local && mkdir ../Local
66 # Check that the local Makefile is up-to-date
68 Makefile: ../OS/Makefile-Base ../OS/Makefile-Default \
69 $(SCRIPTS)/Configure $(SCRIPTS)/Configure-Makefile $(EDITME)
71 @echo "*** Makefile needs rebuilding"
72 @echo "*** Please run \"make makefile\" at top level"
76 # Build (link) the os.h file
79 $(SHELL) $(SCRIPTS)/Configure-os.h
84 $(SHELL) $(SCRIPTS)/Configure-os.c
86 # Build the config.h file.
88 config.h: Makefile buildconfig ../src/config.h.defaults $(EDITME)
89 $(SHELL) $(SCRIPTS)/Configure-config.h "$(MAKE)"
92 # This target is recognized specially by GNU make. It records those targets
93 # that do not correspond to files that are being built and which should
94 # therefore always be run, even if the files exist. This shouldn't in fact be a
95 # problem, but it does no harm. Other make programs will just ignore this.
97 .PHONY: all allexim buildauths buildlookups buildpdkim buildrouters \
98 buildtransports checklocalmake clean
101 # This is the real default target for all the various exim binaries and
102 # scripts, once the configuring stuff is done.
104 allexim: config.h $(EXIM_MONITOR) exicyclog exinext exiwhat \
105 exigrep eximstats exipick exiqgrep exiqsumm \
106 transport-filter.pl convert4r3 convert4r4 \
108 exim_dbmbuild exim_dumpdb exim_fixdb exim_tidydb exim_lock \
112 # Targets for special-purpose configuration header builders
113 buildconfig: buildconfig.c
114 @echo "$(CC) buildconfig.c"
115 $(FE)$(CC) $(CFLAGS) $(INCLUDE) -o buildconfig buildconfig.c $(LIBS)
118 # Target for the exicyclog utility script
119 exicyclog: Makefile config.h ../src/exicyclog.src
122 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
125 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
126 -e "s?CONFIGURE_FILE_USE_EUID?$(CONFIGURE_FILE_USE_EUID)?" \
127 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
128 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
129 -e "s?EXICYCLOG_MAX?$(EXICYCLOG_MAX)?" \
130 -e "s?COMPRESS_COMMAND?$(COMPRESS_COMMAND)?" \
131 -e "s?COMPRESS_SUFFIX?$(COMPRESS_SUFFIX)?" \
132 -e "s?CHGRP_COMMAND?$(CHGRP_COMMAND)?" \
133 -e "s?CHMOD_COMMAND?$(CHMOD_COMMAND)?" \
134 -e "s?CHOWN_COMMAND?$(CHOWN_COMMAND)?" \
135 -e "s?MV_COMMAND?$(MV_COMMAND)?" \
136 -e "s?RM_COMMAND?$(RM_COMMAND)?" \
137 -e "s?TOUCH_COMMAND?$(TOUCH_COMMAND)?" \
138 ../src/exicyclog.src > exicyclog-t
139 @mv exicyclog-t exicyclog
141 @echo ">>> exicyclog script built"
143 # Target for the exinext utility script
144 exinext: Makefile config.h ../src/exinext.src
147 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
150 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
151 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
152 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
153 ../src/exinext.src > exinext-t
154 @mv exinext-t exinext
156 @echo ">>> exinext script built"
158 # Target for the exiwhat utility script
159 exiwhat: Makefile config.h ../src/exiwhat.src
162 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
165 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
166 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
167 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
168 -e "s?EXIWHAT_PS_CMD?$(EXIWHAT_PS_CMD)?" \
169 -e "s?EXIWHAT_PS_ARG?$(EXIWHAT_PS_ARG)?" \
170 -e "s?EXIWHAT_KILL_SIGNAL?$(EXIWHAT_KILL_SIGNAL)?" \
171 -e "s?EXIWHAT_EGREP_ARG?$(EXIWHAT_EGREP_ARG)?" \
172 -e "s?EXIWHAT_MULTIKILL_CMD?$(EXIWHAT_MULTIKILL_CMD)?" \
173 -e "s?EXIWHAT_MULTIKILL_ARG?$(EXIWHAT_MULTIKILL_ARG)?" \
174 ../src/exiwhat.src > exiwhat-t
175 @mv exiwhat-t exiwhat
177 @echo ">>> exiwhat script built"
179 # Target for the exim_checkaccess utility script
180 exim_checkaccess: Makefile config.h ../src/exim_checkaccess.src
181 @rm -f exim_checkaccess
183 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
186 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
187 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
188 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
189 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
190 ../src/exim_checkaccess.src > exim_checkaccess-t
191 @mv exim_checkaccess-t exim_checkaccess
192 @chmod a+x exim_checkaccess
193 @echo ">>> exim_checkaccess script built"; echo ""
195 # Target for the Exim monitor start-up script
196 eximon: Makefile config.h ../src/eximon.src ../OS/eximon.conf-Default \
199 $(SHELL) $(SCRIPTS)/Configure-eximon
201 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
204 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
205 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
206 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
207 -e "s?BASENAME_COMMAND?$(BASENAME_COMMAND)?" \
208 -e "s?HOSTNAME_COMMAND?$(HOSTNAME_COMMAND)?" \
209 -e "s?X11_LD_LIBRARY?$(X11_LD_LIB)?" \
210 ../src/eximon.src >> eximon
211 @echo ">>> eximon script built"; echo ""
213 # Targets for utilities; these are all Perl scripts that have to get the
214 # location of Perl put in them. A few need other things as well.
216 exigrep: Makefile ../src/exigrep.src
219 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
222 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
223 -e "s?ZCAT_COMMAND?$(ZCAT_COMMAND)?" \
224 -e "s?COMPRESS_SUFFIX?$(COMPRESS_SUFFIX)?" \
225 ../src/exigrep.src > exigrep-t
226 @mv exigrep-t exigrep
228 @echo ">>> exigrep script built"
230 eximstats: Makefile ../src/eximstats.src
233 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
234 ../src/eximstats.src > eximstats-t
235 @mv eximstats-t eximstats
237 @echo ">>> eximstats script built"
239 exiqgrep: Makefile ../src/exiqgrep.src
242 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
245 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
246 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
247 ../src/exiqgrep.src > exiqgrep-t
248 @mv exiqgrep-t exiqgrep
250 @echo ">>> exiqgrep script built"
252 exiqsumm: Makefile ../src/exiqsumm.src
254 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
255 ../src/exiqsumm.src > exiqsumm-t
256 @mv exiqsumm-t exiqsumm
258 @echo ">>> exiqsumm script built"
260 exipick: Makefile ../src/exipick.src
262 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
263 -e "s?SPOOL_DIRECTORY?$(SPOOL_DIRECTORY)?" \
264 ../src/exipick.src > exipick-t
265 @mv exipick-t exipick
267 @echo ">>> exipick script built"
269 transport-filter.pl: Makefile ../src/transport-filter.src
270 @rm -f transport-filter.pl
271 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
272 ../src/transport-filter.src > transport-filter.pl-t
273 @mv transport-filter.pl-t transport-filter.pl
274 @chmod a+x transport-filter.pl
275 @echo ">>> transport-filter.pl script built"
277 convert4r3: Makefile ../src/convert4r3.src
279 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
280 ../src/convert4r3.src > convert4r3-t
281 @mv convert4r3-t convert4r3
282 @chmod a+x convert4r3
283 @echo ">>> convert4r3 script built"
285 convert4r4: Makefile ../src/convert4r4.src
287 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
288 ../src/convert4r4.src > convert4r4-t
289 @mv convert4r4-t convert4r4
290 @chmod a+x convert4r4
291 @echo ">>> convert4r4 script built"
294 # These are objects of optional features. They are always compiled, but
295 # if the corresponding #defines are not set, they wind up empty and
296 # are thrown away by the linker.
298 OBJ_WITH_CONTENT_SCAN = malware.o mime.o regex.o spam.o spool_mbox.o
299 OBJ_WITH_OLD_DEMIME = demime.o
300 OBJ_EXPERIMENTAL = bmi_spam.o spf.o srs.o dcc.o dmarc.o
302 # Targets for final binaries; the main one has a build number which is
303 # updated each time. We don't bother with that for the auxiliaries.
305 OBJ_LOOKUPS = lookups/lf_quote.o lookups/lf_check_file.o lookups/lf_sqlperform.o
307 OBJ_EXIM = acl.o child.o crypt16.o daemon.o dbfn.o debug.o deliver.o \
308 directory.o dns.o drtables.o enq.o exim.o expand.o filter.o \
309 filtertest.o globals.o dkim.o \
310 header.o host.o ip.o log.o lss.o match.o moan.o \
311 os.o parse.o queue.o \
312 rda.o readconf.o receive.o retry.o rewrite.o rfc2047.o \
313 route.o search.o sieve.o smtp_in.o smtp_out.o spool_in.o spool_out.o \
314 std-crypto.o store.o string.o tls.o tod.o transport.o tree.o verify.o \
316 local_scan.o $(EXIM_PERL) $(OBJ_WITH_CONTENT_SCAN) \
317 $(OBJ_WITH_OLD_DEMIME) $(OBJ_EXPERIMENTAL)
319 exim: buildlookups buildauths pdkim/pdkim.a \
320 buildrouters buildtransports \
321 $(OBJ_EXIM) version.o
322 @echo "$(LNCC) -o exim"
323 $(FE)$(PURIFY) $(LNCC) -o exim $(LFLAGS) $(OBJ_EXIM) version.o \
324 routers/routers.a transports/transports.a lookups/lookups.a \
325 auths/auths.a pdkim/pdkim.a \
326 $(LIBRESOLV) $(LIBS) $(LIBS_EXIM) $(IPV6_LIBS) $(EXTRALIBS) \
327 $(EXTRALIBS_EXIM) $(DBMLIB) $(LOOKUP_LIBS) $(AUTH_LIBS) \
328 $(PERL_LIBS) $(TLS_LIBS) $(PCRE_LIBS) $(LDFLAGS)
329 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
330 echo $(STRIP_COMMAND) exim; \
331 $(STRIP_COMMAND) exim; \
335 @echo ">>> exim binary built"
338 # The utility for dumping the contents of an exim database
340 OBJ_DUMPDB = exim_dumpdb.o util-os.o util-store.o
342 exim_dumpdb: $(OBJ_DUMPDB)
343 @echo "$(LNCC) -o exim_dumpdb"
344 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_dumpdb $(LFLAGS) $(OBJ_DUMPDB) \
345 $(LIBS) $(EXTRALIBS) $(DBMLIB)
346 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
347 echo $(STRIP_COMMAND) exim_dumpdb; \
348 $(STRIP_COMMAND) exim_dumpdb; \
350 @echo ">>> exim_dumpdb utility built"
353 # The utility for interrogating/fixing the contents of an exim database
355 OBJ_FIXDB = exim_fixdb.o util-os.o util-store.o
357 exim_fixdb: $(OBJ_FIXDB) buildauths
358 @echo "$(LNCC) -o exim_fixdb"
359 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_fixdb $(LFLAGS) $(OBJ_FIXDB) \
360 auths/auths.a $(LIBS) $(EXTRALIBS) $(DBMLIB)
361 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
362 echo $(STRIP_COMMAND) exim_fixdb; \
363 $(STRIP_COMMAND) exim_fixdb; \
365 @echo ">>> exim_fixdb utility built"
368 # The utility for tidying the contents of an exim database
370 OBJ_TIDYDB = exim_tidydb.o util-os.o util-store.o
372 exim_tidydb: $(OBJ_TIDYDB)
373 @echo "$(LNCC) -o exim_tidydb"
374 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_tidydb $(LFLAGS) $(OBJ_TIDYDB) \
375 $(LIBS) $(EXTRALIBS) $(DBMLIB)
376 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
377 echo $(STRIP_COMMAND) exim_tidydb; \
378 $(STRIP_COMMAND) exim_tidydb; \
380 @echo ">>> exim_tidydb utility built"
383 # The utility for building dbm files
385 exim_dbmbuild: exim_dbmbuild.o
386 @echo "$(LNCC) -o exim_dbmbuild"
387 $(FE)$(LNCC) -o exim_dbmbuild $(LFLAGS) exim_dbmbuild.o \
388 $(LIBS) $(EXTRALIBS) $(DBMLIB)
389 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
390 echo $(STRIP_COMMAND) exim_dbmbuild; \
391 $(STRIP_COMMAND) exim_dbmbuild; \
393 @echo ">>> exim_dbmbuild utility built"
396 # The utility for locking a mailbox while messing around with it
398 exim_lock: exim_lock.c
399 @echo "$(CC) exim_lock.c"
400 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) exim_lock.c
401 @echo "$(LNCC) -o exim_lock"
402 $(FE)$(LNCC) -o exim_lock $(LFLAGS) exim_lock.o \
404 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
405 echo $(STRIP_COMMAND) exim_lock; \
406 $(STRIP_COMMAND) exim_lock; \
408 @echo ">>> exim_lock utility built"
411 # The X-based Exim monitor program's binary part. There's a macro for cutting
412 # out the modified TextPop module, because some antique link editors cannot
413 # handle the fact that it is redefining things that are found later in the
416 # Object modules that are the unique Eximon modules
418 MONBIN = em_StripChart.o $(EXIMON_TEXTPOP) em_globals.o em_init.o \
419 em_log.o em_main.o em_menu.o em_queue.o em_strip.o \
422 # The complete modules list also includes some specially compiled versions of
423 # code from the main Exim source tree.
425 OBJ_MONBIN = util-spool_in.o util-store.o util-string.o tod.o tree.o $(MONBIN)
427 eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) \
428 ../exim_monitor/em_version.c
429 @echo "$(CC) exim_monitor/em_version.c"
430 $(FE)$(CC) -o em_version.o -c \
431 $(CFLAGS) $(XINCLUDE) -I. ../exim_monitor/em_version.c
432 @echo "$(LNCC) -o eximon.bin"
433 $(FE)$(PURIFY) $(LNCC) -o eximon.bin em_version.o $(LFLAGS) $(XLFLAGS) \
434 $(OBJ_MONBIN) -lXaw -lXmu -lXt -lXext -lX11 $(PCRE_LIBS) \
435 $(LIBS) $(LIBS_EXIMON) $(EXTRALIBS) $(EXTRALIBS_EXIMON) -lc
436 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
437 echo $(STRIP_COMMAND) eximon.bin; \
438 $(STRIP_COMMAND) eximon.bin; \
440 @echo ">>> exim monitor binary built"
444 # Compile step for most of the exim modules. HDRS is a list of headers
445 # which cause everthing to be rebuilt. PHDRS is the same, for the use
446 # of routers, transports, and authenticators. I can't find a way of doing this
447 # in one. This list is overkill, but it doesn't really take much time to
448 # rebuild Exim on a modern computer.
450 HDRS = config.h dbfunctions.h dbstuff.h exim.h functions.h globals.h local_scan.h macros.h mytypes.h structs.h
451 PHDRS = ../config.h ../dbfunctions.h ../dbstuff.h ../exim.h ../functions.h ../globals.h ../local_scan.h ../macros.h ../mytypes.h ../structs.h
454 .c.o:; @echo "$(CC) $*.c"
455 $(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE) $*.c
457 # Update Exim's version information and build the version object.
460 @../scripts/reversion
464 version.o: $(HDRS) cnumber.h version.h version.c
466 # This is the dummy module for use by test compiles of individual modules. It
467 # contains functions such as log_write() that may be called from bits of Exim
468 # in the tested code.
472 # Compile instructions for perl.o for when EXIM_PERL is set
474 perl.o: $(HDRS) perl.c
475 @echo "$(PERL_CC) perl.c"
476 $(FE)$(PERL_CC) $(PERL_CCOPTS) $(CFLAGS) $(INCLUDE) -c perl.c
478 # Compile instructions for the database utility modules
480 exim_dumpdb.o: $(HDRS) exim_dbutil.c
481 @echo "$(CC) -DEXIM_DUMPDB exim_dbutil.c"
482 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
485 -o exim_dumpdb.o exim_dbutil.c
487 exim_fixdb.o: $(HDRS) exim_dbutil.c
488 @echo "$(CC) -DEXIM_FIXDB exim_dbutil.c"
489 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
492 -o exim_fixdb.o exim_dbutil.c
494 exim_tidydb.o: $(HDRS) exim_dbutil.c
495 @echo "$(CC) -DEXIM_TIDYDB exim_dbutil.c"
496 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
499 -o exim_tidydb.o exim_dbutil.c
501 # Compile instructions for exim_dbmbuild
503 exim_dbmbuild.o: $(HDRS) exim_dbmbuild.c
504 @echo "$(CC) exim_dbmbuild.c"
505 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -o exim_dbmbuild.o exim_dbmbuild.c
507 # Utilities use special versions of some modules - typically with debugging
510 util-spool_in.o: $(HDRS) spool_in.c
511 @echo "$(CC) -DCOMPILE_UTILITY spool_in.c"
512 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-spool_in.o spool_in.c
514 util-store.o: $(HDRS) store.c
515 @echo "$(CC) -DCOMPILE_UTILITY store.c"
516 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-store.o store.c
518 util-string.o: $(HDRS) string.c
519 @echo "$(CC) -DCOMPILE_UTILITY string.c"
520 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-string.o string.c
522 util-os.o: $(HDRS) os.c
523 @echo "$(CC) -DCOMPILE_UTILITY os.c"
524 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
527 -DFIND_RUNNING_INTERFACES \
530 # The local scan module depends only on its own special header, and is compiled
531 # from a source whose location is set by configuration.
533 local_scan.o: Makefile config.h local_scan.h ../$(LOCAL_SCAN_SOURCE)
534 @echo "$(CC) local_scan.c"
535 $(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) -o local_scan.o ../$(LOCAL_SCAN_SOURCE)
537 # Dependencies for the "ordinary" exim modules
540 child.o: $(HDRS) child.c
541 crypt16.o: $(HDRS) crypt16.c
542 daemon.o: $(HDRS) daemon.c
543 dbfn.o: $(HDRS) dbfn.c
544 debug.o: $(HDRS) debug.c
545 deliver.o: $(HDRS) deliver.c
546 directory.o: $(HDRS) directory.c
549 exim.o: $(HDRS) exim.c
550 expand.o: $(HDRS) expand.c
551 filter.o: $(HDRS) filter.c
552 filtertest.o: $(HDRS) filtertest.c
553 globals.o: $(HDRS) globals.c
554 header.o: $(HDRS) header.c
555 host.o: $(HDRS) host.c
559 match.o: $(HDRS) match.c
560 moan.o: $(HDRS) moan.c
562 parse.o: $(HDRS) parse.c
563 queue.o: $(HDRS) queue.c
565 readconf.o: $(HDRS) readconf.c
566 receive.o: $(HDRS) receive.c
567 retry.o: $(HDRS) retry.c
568 rewrite.o: $(HDRS) rewrite.c
569 rfc2047.o: $(HDRS) rfc2047.c
570 route.o: $(HDRS) route.c
571 search.o: $(HDRS) search.c
572 sieve.o: $(HDRS) sieve.c
573 smtp_in.o: $(HDRS) smtp_in.c
574 smtp_out.o: $(HDRS) smtp_out.c
575 spool_in.o: $(HDRS) spool_in.c
576 spool_out.o: $(HDRS) spool_out.c
577 std-crypto.o: $(HDRS) std-crypto.c
578 store.o: $(HDRS) store.c
579 string.o: $(HDRS) string.c
580 tls.o: $(HDRS) tls.c tls-gnu.c tls-openssl.c
582 transport.o: $(HDRS) transport.c
583 tree.o: $(HDRS) tree.c
584 verify.o: $(HDRS) verify.c
585 dkim.o: $(HDRS) dkim.c
587 # Dependencies for WITH_CONTENT_SCAN modules
589 malware.o: $(HDRS) malware.c
590 mime.o: $(HDRS) mime.c
591 regex.o: $(HDRS) regex.c
592 spam.o: $(HDRS) spam.c
593 spool_mbox.o: $(HDRS) spool_mbox.c
596 # Dependencies for WITH_OLD_DEMIME modules
598 demime.o: $(HDRS) demime.c
601 # Dependencies for EXPERIMENTAL_* modules
603 bmi_spam.o: $(HDRS) bmi_spam.c
604 spf.o: $(HDRS) spf.h spf.c
605 srs.o: $(HDRS) srs.h srs.c
606 dcc.o: $(HDRS) dcc.h dcc.c
607 dmarc.o: $(HDRS) dmarc.h dmarc.c
609 # The module containing tables of available lookups, routers, auths, and
610 # transports must be rebuilt if any of them are. However, because the makefiles
611 # for the drivers are always run, we don't actually put the dependencies here,
612 # because if we do, some version of "make" (e.g. IRIX) insist on rebuilding
613 # drtables.o even though the .a files haven't in fact been updated. Instead
614 # it is arranged that the lower-level makefiles remove drtables.o when they
615 # rebuild the .a files.
617 drtables.o: $(HDRS) drtables.c
619 # We depend upon object files built as part of building the lookups library
620 # When using parallel make, we don't have the dependency to force building
621 # in the sub-directory unless we force that dependency:
623 $(OBJ_LOOKUPS): buildlookups
625 # The exim monitor's private modules - the sources live in a private
626 # subdirectory. The final binary combines the private modules with some
627 # modules from the main exim binary.
629 em_StripChart.o: ../exim_monitor/em_StripChart.c
630 em_TextPop.o: ../exim_monitor/em_TextPop.c
631 em_globals.o: ../exim_monitor/em_globals.c ../exim_monitor/em_hdr.h
632 em_init.o: ../exim_monitor/em_init.c ../exim_monitor/em_hdr.h
633 em_log.o: ../exim_monitor/em_log.c ../exim_monitor/em_hdr.h
634 em_main.o: ../exim_monitor/em_main.c ../exim_monitor/em_hdr.h
635 em_menu.o: ../exim_monitor/em_menu.c ../exim_monitor/em_hdr.h
636 em_queue.o: ../exim_monitor/em_queue.c ../exim_monitor/em_hdr.h
637 em_strip.o: ../exim_monitor/em_strip.c ../exim_monitor/em_hdr.h
638 em_text.o: ../exim_monitor/em_text.c ../exim_monitor/em_hdr.h
639 em_xs.o: ../exim_monitor/em_xs.c ../exim_monitor/em_hdr.h
640 em_version.o: ../exim_monitor/em_version.c ../exim_monitor/em_hdr.h
642 @echo "$(CC) exim_monitor/`echo $@ | sed 's/o$$/c/'`"
643 $(FE)$(CC) -o $@ -c $(CFLAGS) -I. -I../exim_monitor $(INCLUDE) $(XINCLUDE) \
644 ../exim_monitor/`echo $@ | sed 's/o$$/c/'`
647 # Targets for the various libraries that Exim uses.
649 # The lookups library.
652 @cd lookups && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
653 CFLAGS_DYNAMIC="$(CFLAGS_DYNAMIC)" HDRS="../version.h $(PHDRS)" \
654 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" \
655 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE) $(LOOKUP_INCLUDE)"
658 # The routers library.
661 @cd routers && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
662 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
663 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
666 # The transports library.
669 @cd transports && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
670 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
671 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
674 # The library of authorization modules
677 @cd auths && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
678 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
679 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
684 buildpdkim: pdkim/pdkim.a
685 pdkim/pdkim.a: config.h
686 @cd pdkim && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
687 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
688 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
691 # The "clean", "install", and "makefile" targets just pass themselves back to
692 # the main Exim makefile. These targets will be obeyed only if "make" is obeyed
693 # for them in the build directory.
695 clean install makefile:; cd ..; $(MAKE) $(MFLAGS) build=$(build) $@
697 # Targets for building stand-alone testing programs for basic testing of
698 # some of the building blocks. These are not integrated with the makefile-
699 # building targets. If you change something that is going to cause the
700 # makefile to be rebuilt, you must run "make makefile" before running one
703 # The testing programs use different versions of some modules - usually
704 # with bits cut out that are not relevant to the test in hand. For those
705 # that are used by several tests, we use a different name.
707 sa-globals.o: $(HDRS) globals.c
708 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -o sa-globals.o globals.c
710 sa-os.o: $(HDRS) os.c
711 $(CC) -c $(CFLAGS) $(INCLUDE) \
712 -DFIND_RUNNING_INTERFACES \
715 # These are the test targets themselves
717 test_dbfn: config.h dbfn.c dummies.o sa-globals.o sa-os.o store.o \
718 string.o tod.o version.o
719 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE dbfn.c
720 $(LNCC) -o test_dbfn $(LFLAGS) dbfn.o \
721 dummies.o sa-globals.o sa-os.o store.o string.o \
722 tod.o version.o $(LIBS) $(DBMLIB)
725 test_host: config.h child.c host.c dns.c dummies.c sa-globals.o os.o \
726 store.o string.o tod.o tree.o
727 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST child.c
728 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST host.c
729 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST dns.c
730 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST dummies.c
731 $(LNCC) -o test_host $(LFLAGS) \
732 host.o child.o dns.o dummies.o sa-globals.o os.o store.o string.o \
733 tod.o tree.o $(LIBS) $(LIBRESOLV)
734 rm -f child.o dummies.o host.o dns.o
736 test_os: os.h os.c dummies.o sa-globals.o store.o string.o tod.o
737 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE os.c
738 $(LNCC) -o test_os $(LFLAGS) os.o dummies.o \
739 sa-globals.o store.o string.o tod.o $(LIBS)
742 test_parse: config.h parse.c dummies.o sa-globals.o \
743 store.o string.o tod.o version.o
744 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE parse.c
745 $(LNCC) -o test_parse $(LFLAGS) parse.o \
746 dummies.o sa-globals.o store.o string.o tod.o version.o
749 test_string: config.h string.c dummies.o sa-globals.o store.o tod.o
750 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE string.c
751 $(LNCC) -o test_string $(LFLAGS) -DSTAND_ALONE string.o \
752 dummies.o sa-globals.o store.o tod.o $(LIBS)