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
11 EDITME = ../Local/Makefile
12 EXIMON_EDITME = ../Local/eximon.conf
14 # The compiler used for linking is normally the same as the compiler used for
15 # compiling. However, by giving it a different name, we can override it from
16 # the command line, and this is helpful for certain types of testing.
20 # The compile commands can be very long. To make the output look better,
21 # they are not normally echoed in full. To get full echoing, the caller
22 # must set FULLECHO='' on the command line and call make with -e. We default
23 # FULLECHO to '@' to suppress the full echo. Then define an abbreviation.
28 # The default target double-checks the existence of $(EDITME) and then arranges
29 # to touch it if it exists and any of the optional configuration files, which
30 # depend on the os or the architecture, have been altered. The same sub-target
31 # does the same thing for the eximon configuration file if it exists. Then
32 # there is a check that the Makefile (the one built from this file) is
33 # up-to-date. Then the os-specific source files and the C configuration file
34 # are set up, and finally it goes to the main Exim target.
37 config: $(EDITME) checklocalmake Makefile os.c config.h version.h
40 @if $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(OSTYPE) $(EDITME) || \
41 $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(ARCHTYPE) $(EDITME) || \
42 $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EDITME); \
46 @if $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(OSTYPE) $(EXIMON_EDITME) || \
47 $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(ARCHTYPE) $(EXIMON_EDITME) || \
48 $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EXIMON_EDITME); \
50 if [ -f $(EXIMON_EDITME) ]; then touch $(EXIMON_EDITME); fi \
55 @echo "*** Please create Local/Makefile by copying src/EDITME and making"
56 @echo "*** appropriate changes for your site."
62 @echo "*** Please create Local/eximon.conf by copying exim_monitor/EDITME and making"
63 @echo "*** appropriate changes for your site."
65 @test ! -d ../Local && mkdir ../Local
68 # Check that the local Makefile is up-to-date
70 Makefile: ../OS/Makefile-Base ../OS/Makefile-Default \
71 $(SCRIPTS)/Configure $(SCRIPTS)/Configure-Makefile $(EDITME)
73 @echo "*** Makefile needs rebuilding"
74 @echo "*** Please run \"make makefile\" at top level"
78 # Build (link) the os.h file
80 os.h: $(SCRIPTS)/Configure-os.h \
81 $(O)/os.h-AIX $(O)/os.h-BSDI $(O)/os.h-cygwin \
82 $(O)/os.h-Darwin $(O)/os.h-DGUX $(O)/os.h-DragonFly \
83 $(O)/os.h-FreeBSD $(O)/os.h-GNU $(O)/os.h-GNUkFreeBSD \
84 $(O)/os.h-GNUkNetBSD $(O)/os.h-HI-OSF \
85 $(O)/os.h-HI-UX $(O)/os.h-HP-UX $(O)/os.h-HP-UX-9 \
86 $(O)/os.h-IRIX $(O)/os.h-IRIX6 $(O)/os.h-IRIX632 \
87 $(O)/os.h-IRIX65 $(O)/os.h-Linux $(O)/os.h-mips \
88 $(O)/os.h-NetBSD $(O)/os.h-NetBSD-a.out \
89 $(O)/os.h-OpenBSD $(O)/os.h-OpenUNIX $(O)/os.h-OSF1 \
90 $(O)/os.h-QNX $(O)/os.h-SCO $(O)/os.h-SCO_SV \
91 $(O)/os.h-SunOS4 $(O)/os.h-SunOS5 $(O)/os.h-SunOS5-hal \
92 $(O)/os.h-ULTRIX $(O)/os.h-UNIX_SV \
93 $(O)/os.h-Unixware7 $(O)/os.h-USG
94 $(SHELL) $(SCRIPTS)/Configure-os.h
99 $(SCRIPTS)/Configure-os.c \
100 $(O)/os.c-cygwin $(O)/os.c-GNU $(O)/os.c-HI-OSF \
101 $(O)/os.c-IRIX $(O)/os.c-IRIX6 $(O)/os.c-IRIX632 \
102 $(O)/os.c-IRIX65 $(O)/os.c-Linux $(O)/os.c-OSF1
103 $(SHELL) $(SCRIPTS)/Configure-os.c
105 # Build the config.h file.
107 config.h: Makefile buildconfig ../src/config.h.defaults $(EDITME)
108 $(SHELL) $(SCRIPTS)/Configure-config.h "$(MAKE)"
111 # This target is recognized specially by GNU make. It records those targets
112 # that do not correspond to files that are being built and which should
113 # therefore always be run, even if the files exist. This shouldn't in fact be a
114 # problem, but it does no harm. Other make programs will just ignore this.
116 .PHONY: all config utils \
117 buildauths buildlookups buildpdkim buildrouters \
118 buildtransports checklocalmake clean
121 utils: $(EXIM_MONITOR) exicyclog exinext exiwhat \
122 exigrep eximstats exipick exiqgrep exiqsumm \
123 transport-filter.pl convert4r3 convert4r4 \
125 exim_dbmbuild exim_dumpdb exim_fixdb exim_tidydb exim_lock
128 # Targets for special-purpose configuration header builders
129 buildconfig: buildconfig.c
130 @echo "$(CC) buildconfig.c"
131 $(FE)$(CC) $(CFLAGS) $(INCLUDE) -o buildconfig buildconfig.c $(LIBS)
134 # Target for the exicyclog utility script
135 exicyclog: config ../src/exicyclog.src
138 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
141 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
142 -e "s?CONFIGURE_FILE_USE_EUID?$(CONFIGURE_FILE_USE_EUID)?" \
143 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
144 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
145 -e "s?EXICYCLOG_MAX?$(EXICYCLOG_MAX)?" \
146 -e "s?COMPRESS_COMMAND?$(COMPRESS_COMMAND)?" \
147 -e "s?COMPRESS_SUFFIX?$(COMPRESS_SUFFIX)?" \
148 -e "s?CHGRP_COMMAND?$(CHGRP_COMMAND)?" \
149 -e "s?CHMOD_COMMAND?$(CHMOD_COMMAND)?" \
150 -e "s?CHOWN_COMMAND?$(CHOWN_COMMAND)?" \
151 -e "s?MV_COMMAND?$(MV_COMMAND)?" \
152 -e "s?RM_COMMAND?$(RM_COMMAND)?" \
153 -e "s?TOUCH_COMMAND?$(TOUCH_COMMAND)?" \
154 ../src/exicyclog.src > exicyclog-t
155 @mv exicyclog-t exicyclog
157 @echo ">>> exicyclog script built"
159 # Target for the exinext utility script
160 exinext: config ../src/exinext.src
163 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
166 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
167 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
168 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
169 ../src/exinext.src > exinext-t
170 @mv exinext-t exinext
172 @echo ">>> exinext script built"
174 # Target for the exiwhat utility script
175 exiwhat: config ../src/exiwhat.src
178 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
181 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
182 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
183 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
184 -e "s?EXIWHAT_PS_CMD?$(EXIWHAT_PS_CMD)?" \
185 -e "s?EXIWHAT_PS_ARG?$(EXIWHAT_PS_ARG)?" \
186 -e "s?EXIWHAT_KILL_SIGNAL?$(EXIWHAT_KILL_SIGNAL)?" \
187 -e "s?EXIWHAT_EGREP_ARG?$(EXIWHAT_EGREP_ARG)?" \
188 -e "s?EXIWHAT_MULTIKILL_CMD?$(EXIWHAT_MULTIKILL_CMD)?" \
189 -e "s?EXIWHAT_MULTIKILL_ARG?$(EXIWHAT_MULTIKILL_ARG)?" \
190 ../src/exiwhat.src > exiwhat-t
191 @mv exiwhat-t exiwhat
193 @echo ">>> exiwhat script built"
195 # Target for the exim_checkaccess utility script
196 exim_checkaccess: config ../src/exim_checkaccess.src
197 @rm -f exim_checkaccess
199 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
202 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
203 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
204 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
205 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
206 ../src/exim_checkaccess.src > exim_checkaccess-t
207 @mv exim_checkaccess-t exim_checkaccess
208 @chmod a+x exim_checkaccess
209 @echo ">>> exim_checkaccess script built"; echo ""
211 # Target for the Exim monitor start-up script
212 eximon: config ../src/eximon.src ../OS/eximon.conf-Default \
215 $(SHELL) $(SCRIPTS)/Configure-eximon
217 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
220 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
221 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
222 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
223 -e "s?BASENAME_COMMAND?$(BASENAME_COMMAND)?" \
224 -e "s?HOSTNAME_COMMAND?$(HOSTNAME_COMMAND)?" \
225 -e "s?X11_LD_LIBRARY?$(X11_LD_LIB)?" \
226 ../src/eximon.src >> eximon
227 @echo ">>> eximon script built"; echo ""
229 # Targets for utilities; these are all Perl scripts that have to get the
230 # location of Perl put in them. A few need other things as well.
232 exigrep: Makefile ../src/exigrep.src
235 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
238 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
239 -e "s?ZCAT_COMMAND?$(ZCAT_COMMAND)?" \
240 -e "s?COMPRESS_SUFFIX?$(COMPRESS_SUFFIX)?" \
241 ../src/exigrep.src > exigrep-t
242 @mv exigrep-t exigrep
244 @echo ">>> exigrep script built"
246 eximstats: Makefile ../src/eximstats.src
249 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
250 ../src/eximstats.src > eximstats-t
251 @mv eximstats-t eximstats
253 @echo ">>> eximstats script built"
255 exiqgrep: Makefile ../src/exiqgrep.src
258 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
261 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
262 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
263 ../src/exiqgrep.src > exiqgrep-t
264 @mv exiqgrep-t exiqgrep
266 @echo ">>> exiqgrep script built"
268 exiqsumm: Makefile ../src/exiqsumm.src
270 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
271 ../src/exiqsumm.src > exiqsumm-t
272 @mv exiqsumm-t exiqsumm
274 @echo ">>> exiqsumm script built"
276 exipick: Makefile ../src/exipick.src
278 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
279 -e "s?SPOOL_DIRECTORY?$(SPOOL_DIRECTORY)?" \
280 ../src/exipick.src > exipick-t
281 @mv exipick-t exipick
283 @echo ">>> exipick script built"
285 transport-filter.pl: Makefile ../src/transport-filter.src
286 @rm -f transport-filter.pl
287 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
288 ../src/transport-filter.src > transport-filter.pl-t
289 @mv transport-filter.pl-t transport-filter.pl
290 @chmod a+x transport-filter.pl
291 @echo ">>> transport-filter.pl script built"
293 convert4r3: Makefile ../src/convert4r3.src
295 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
296 ../src/convert4r3.src > convert4r3-t
297 @mv convert4r3-t convert4r3
298 @chmod a+x convert4r3
299 @echo ">>> convert4r3 script built"
301 convert4r4: Makefile ../src/convert4r4.src
303 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
304 ../src/convert4r4.src > convert4r4-t
305 @mv convert4r4-t convert4r4
306 @chmod a+x convert4r4
307 @echo ">>> convert4r4 script built"
310 # These are objects of optional features. They are always compiled, but
311 # if the corresponding #defines are not set, they wind up empty and
312 # are thrown away by the linker.
314 OBJ_WITH_CONTENT_SCAN = malware.o mime.o regex.o spam.o spool_mbox.o
315 OBJ_WITH_OLD_DEMIME = demime.o
316 OBJ_EXPERIMENTAL = bmi_spam.o \
325 # Targets for final binaries; the main one has a build number which is
326 # updated each time. We don't bother with that for the auxiliaries.
328 OBJ_LOOKUPS = lookups/lf_quote.o lookups/lf_check_file.o lookups/lf_sqlperform.o
330 OBJ_EXIM = acl.o base64.o child.o crypt16.o daemon.o dbfn.o debug.o deliver.o \
331 directory.o dns.o drtables.o enq.o exim.o expand.o filter.o \
332 filtertest.o globals.o dkim.o \
333 header.o host.o ip.o log.o lss.o match.o moan.o \
334 os.o parse.o queue.o \
335 rda.o readconf.o receive.o retry.o rewrite.o rfc2047.o \
336 route.o search.o sieve.o smtp_in.o smtp_out.o spool_in.o spool_out.o \
337 std-crypto.o store.o string.o tls.o tod.o transport.o tree.o verify.o \
340 local_scan.o $(EXIM_PERL) $(OBJ_WITH_CONTENT_SCAN) \
341 $(OBJ_WITH_OLD_DEMIME) $(OBJ_EXPERIMENTAL)
343 exim: buildlookups buildauths pdkim/pdkim.a \
344 buildrouters buildtransports \
345 $(OBJ_EXIM) version.o
346 @echo "$(LNCC) -o exim"
347 $(FE)$(PURIFY) $(LNCC) -o exim $(LFLAGS) $(OBJ_EXIM) version.o \
348 routers/routers.a transports/transports.a lookups/lookups.a \
349 auths/auths.a pdkim/pdkim.a \
350 $(LIBRESOLV) $(LIBS) $(LIBS_EXIM) $(IPV6_LIBS) $(EXTRALIBS) \
351 $(EXTRALIBS_EXIM) $(DBMLIB) $(LOOKUP_LIBS) $(AUTH_LIBS) \
352 $(PERL_LIBS) $(TLS_LIBS) $(PCRE_LIBS) $(LDFLAGS)
353 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
354 echo $(STRIP_COMMAND) exim; \
355 $(STRIP_COMMAND) exim; \
359 @echo ">>> exim binary built"
362 # The utility for dumping the contents of an exim database
364 OBJ_DUMPDB = exim_dumpdb.o util-os.o util-store.o
366 exim_dumpdb: $(OBJ_DUMPDB)
367 @echo "$(LNCC) -o exim_dumpdb"
368 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_dumpdb $(LFLAGS) $(OBJ_DUMPDB) \
369 $(LIBS) $(EXTRALIBS) $(DBMLIB)
370 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
371 echo $(STRIP_COMMAND) exim_dumpdb; \
372 $(STRIP_COMMAND) exim_dumpdb; \
374 @echo ">>> exim_dumpdb utility built"
377 # The utility for interrogating/fixing the contents of an exim database
379 OBJ_FIXDB = exim_fixdb.o util-os.o util-store.o
381 exim_fixdb: $(OBJ_FIXDB) buildauths
382 @echo "$(LNCC) -o exim_fixdb"
383 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_fixdb $(LFLAGS) $(OBJ_FIXDB) \
384 auths/auths.a $(LIBS) $(EXTRALIBS) $(DBMLIB)
385 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
386 echo $(STRIP_COMMAND) exim_fixdb; \
387 $(STRIP_COMMAND) exim_fixdb; \
389 @echo ">>> exim_fixdb utility built"
392 # The utility for tidying the contents of an exim database
394 OBJ_TIDYDB = exim_tidydb.o util-os.o util-store.o
396 exim_tidydb: $(OBJ_TIDYDB)
397 @echo "$(LNCC) -o exim_tidydb"
398 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_tidydb $(LFLAGS) $(OBJ_TIDYDB) \
399 $(LIBS) $(EXTRALIBS) $(DBMLIB)
400 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
401 echo $(STRIP_COMMAND) exim_tidydb; \
402 $(STRIP_COMMAND) exim_tidydb; \
404 @echo ">>> exim_tidydb utility built"
407 # The utility for building dbm files
409 exim_dbmbuild: exim_dbmbuild.o
410 @echo "$(LNCC) -o exim_dbmbuild"
411 $(FE)$(LNCC) -o exim_dbmbuild $(LFLAGS) exim_dbmbuild.o \
412 $(LIBS) $(EXTRALIBS) $(DBMLIB)
413 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
414 echo $(STRIP_COMMAND) exim_dbmbuild; \
415 $(STRIP_COMMAND) exim_dbmbuild; \
417 @echo ">>> exim_dbmbuild utility built"
420 # The utility for locking a mailbox while messing around with it
422 exim_lock: exim_lock.c os.h
423 @echo "$(CC) exim_lock.c"
424 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) exim_lock.c
425 @echo "$(LNCC) -o exim_lock"
426 $(FE)$(LNCC) -o exim_lock $(LFLAGS) exim_lock.o \
428 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
429 echo $(STRIP_COMMAND) exim_lock; \
430 $(STRIP_COMMAND) exim_lock; \
432 @echo ">>> exim_lock utility built"
435 # The X-based Exim monitor program's binary part. There's a macro for cutting
436 # out the modified TextPop module, because some antique link editors cannot
437 # handle the fact that it is redefining things that are found later in the
440 # Object modules that are the unique Eximon modules
442 MONBIN = em_StripChart.o $(EXIMON_TEXTPOP) em_globals.o em_init.o \
443 em_log.o em_main.o em_menu.o em_queue.o em_strip.o \
446 # The complete modules list also includes some specially compiled versions of
447 # code from the main Exim source tree.
449 OBJ_MONBIN = util-spool_in.o util-store.o util-string.o tod.o tree.o $(MONBIN)
451 eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) \
452 ../exim_monitor/em_version.c
453 @echo "$(CC) exim_monitor/em_version.c"
454 $(FE)$(CC) -o em_version.o -c \
455 $(CFLAGS) $(XINCLUDE) -I. ../exim_monitor/em_version.c
456 @echo "$(LNCC) -o eximon.bin"
457 $(FE)$(PURIFY) $(LNCC) -o eximon.bin em_version.o $(LFLAGS) $(XLFLAGS) \
458 $(OBJ_MONBIN) -lXaw -lXmu -lXt -lXext -lX11 $(PCRE_LIBS) \
459 $(LIBS) $(LIBS_EXIMON) $(EXTRALIBS) $(EXTRALIBS_EXIMON) -lc
460 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
461 echo $(STRIP_COMMAND) eximon.bin; \
462 $(STRIP_COMMAND) eximon.bin; \
464 @echo ">>> exim monitor binary built"
468 # Compile step for most of the exim modules. HDRS is a list of headers
469 # which cause everthing to be rebuilt. PHDRS is the same, for the use
470 # of routers, transports, and authenticators. I can't find a way of doing this
471 # in one. This list is overkill, but it doesn't really take much time to
472 # rebuild Exim on a modern computer.
485 PHDRS = ../config.h \
498 .c.o:; @echo "$(CC) $*.c"
499 $(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE) $*.c
501 # Update Exim's version information and build the version object.
504 @../scripts/reversion
508 version.o: $(HDRS) cnumber.h version.h version.c
510 # This is the dummy module for use by test compiles of individual modules. It
511 # contains functions such as log_write() that may be called from bits of Exim
512 # in the tested code.
516 # Compile instructions for perl.o for when EXIM_PERL is set
518 perl.o: $(HDRS) perl.c
519 @echo "$(PERL_CC) perl.c"
520 $(FE)$(PERL_CC) $(PERL_CCOPTS) $(CFLAGS) $(INCLUDE) -c perl.c
522 # Compile instructions for the database utility modules
524 exim_dumpdb.o: $(HDRS) exim_dbutil.c
525 @echo "$(CC) -DEXIM_DUMPDB exim_dbutil.c"
526 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
529 -o exim_dumpdb.o exim_dbutil.c
531 exim_fixdb.o: $(HDRS) exim_dbutil.c
532 @echo "$(CC) -DEXIM_FIXDB exim_dbutil.c"
533 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
536 -o exim_fixdb.o exim_dbutil.c
538 exim_tidydb.o: $(HDRS) exim_dbutil.c
539 @echo "$(CC) -DEXIM_TIDYDB exim_dbutil.c"
540 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
543 -o exim_tidydb.o exim_dbutil.c
545 # Compile instructions for exim_dbmbuild
547 exim_dbmbuild.o: $(HDRS) exim_dbmbuild.c
548 @echo "$(CC) exim_dbmbuild.c"
549 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -o exim_dbmbuild.o exim_dbmbuild.c
551 # Utilities use special versions of some modules - typically with debugging
554 util-spool_in.o: $(HDRS) spool_in.c
555 @echo "$(CC) -DCOMPILE_UTILITY spool_in.c"
556 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-spool_in.o spool_in.c
558 util-store.o: $(HDRS) store.c
559 @echo "$(CC) -DCOMPILE_UTILITY store.c"
560 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-store.o store.c
562 util-string.o: $(HDRS) string.c
563 @echo "$(CC) -DCOMPILE_UTILITY string.c"
564 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-string.o string.c
566 util-os.o: $(HDRS) os.c
567 @echo "$(CC) -DCOMPILE_UTILITY os.c"
568 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
571 -DFIND_RUNNING_INTERFACES \
574 # The local scan module depends only on its own special header, and is compiled
575 # from a source whose location is set by configuration.
577 local_scan.o: config local_scan.h ../$(LOCAL_SCAN_SOURCE)
578 @echo "$(CC) local_scan.c"
579 $(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) -o local_scan.o ../$(LOCAL_SCAN_SOURCE)
581 # Dependencies for the "ordinary" exim modules
584 base64.o: $(HDRS) mime.h base64.c
585 child.o: $(HDRS) child.c
586 crypt16.o: $(HDRS) crypt16.c
587 daemon.o: $(HDRS) daemon.c
588 dbfn.o: $(HDRS) dbfn.c
589 debug.o: $(HDRS) debug.c
590 deliver.o: $(HDRS) deliver.c
591 directory.o: $(HDRS) directory.c
594 exim.o: $(HDRS) exim.c
595 expand.o: $(HDRS) expand.c
596 environment.o: $(HDRS) environment.c
597 filter.o: $(HDRS) filter.c
598 filtertest.o: $(HDRS) filtertest.c
599 globals.o: $(HDRS) globals.c
600 header.o: $(HDRS) header.c
601 host.o: $(HDRS) host.c
605 match.o: $(HDRS) match.c
606 moan.o: $(HDRS) moan.c
608 parse.o: $(HDRS) parse.c
609 queue.o: $(HDRS) queue.c
611 readconf.o: $(HDRS) readconf.c
612 receive.o: $(HDRS) receive.c
613 retry.o: $(HDRS) retry.c
614 rewrite.o: $(HDRS) rewrite.c
615 rfc2047.o: $(HDRS) rfc2047.c
616 route.o: $(HDRS) route.c
617 search.o: $(HDRS) search.c
618 sieve.o: $(HDRS) sieve.c
619 smtp_in.o: $(HDRS) smtp_in.c
620 smtp_out.o: $(HDRS) smtp_out.c
621 spool_in.o: $(HDRS) spool_in.c
622 spool_out.o: $(HDRS) spool_out.c
623 std-crypto.o: $(HDRS) std-crypto.c
624 store.o: $(HDRS) store.c
625 string.o: $(HDRS) string.c
626 tls.o: $(HDRS) tls.c setenv.c \
627 tls-gnu.c tlscert-gnu.c \
628 tls-openssl.c tlscert-openssl.c
630 transport.o: $(HDRS) transport.c
631 tree.o: $(HDRS) tree.c
632 verify.o: $(HDRS) verify.c
633 dkim.o: $(HDRS) pdkim/pdkim.h dkim.c
635 # Dependencies for WITH_CONTENT_SCAN modules
637 malware.o: $(HDRS) malware.c
638 mime.o: $(HDRS) mime.h mime.c
639 regex.o: $(HDRS) regex.c
640 spam.o: $(HDRS) spam.c
641 spool_mbox.o: $(HDRS) spool_mbox.c
644 # Dependencies for WITH_OLD_DEMIME modules
646 demime.o: $(HDRS) demime.c
649 # Dependencies for EXPERIMENTAL_* modules
651 bmi_spam.o: $(HDRS) bmi_spam.c
652 dane.o: $(HDRS) dane.c dane-gnu.c dane-openssl.c
653 dcc.o: $(HDRS) dcc.h dcc.c
654 dmarc.o: $(HDRS) pdkim/pdkim.h dmarc.h dmarc.c
655 imap_utf7.o: $(HDRS) imap_utf7.c
656 spf.o: $(HDRS) spf.h spf.c
657 srs.o: $(HDRS) srs.h srs.c
658 utf8.o: $(HDRS) utf8.c
660 # The module containing tables of available lookups, routers, auths, and
661 # transports must be rebuilt if any of them are. However, because the makefiles
662 # for the drivers are always run, we don't actually put the dependencies here,
663 # because if we do, some version of "make" (e.g. IRIX) insist on rebuilding
664 # drtables.o even though the .a files haven't in fact been updated. Instead
665 # it is arranged that the lower-level makefiles remove drtables.o when they
666 # rebuild the .a files.
668 drtables.o: $(HDRS) drtables.c
670 # We depend upon object files built as part of building the lookups library
671 # When using parallel make, we don't have the dependency to force building
672 # in the sub-directory unless we force that dependency:
674 $(OBJ_LOOKUPS): buildlookups
676 # The exim monitor's private modules - the sources live in a private
677 # subdirectory. The final binary combines the private modules with some
678 # modules from the main exim binary.
680 em_StripChart.o: ../exim_monitor/em_StripChart.c
681 em_TextPop.o: ../exim_monitor/em_TextPop.c
682 em_globals.o: ../exim_monitor/em_globals.c ../exim_monitor/em_hdr.h
683 em_init.o: ../exim_monitor/em_init.c ../exim_monitor/em_hdr.h
684 em_log.o: ../exim_monitor/em_log.c ../exim_monitor/em_hdr.h
685 em_main.o: ../exim_monitor/em_main.c ../exim_monitor/em_hdr.h
686 em_menu.o: ../exim_monitor/em_menu.c ../exim_monitor/em_hdr.h
687 em_queue.o: ../exim_monitor/em_queue.c ../exim_monitor/em_hdr.h
688 em_strip.o: ../exim_monitor/em_strip.c ../exim_monitor/em_hdr.h
689 em_text.o: ../exim_monitor/em_text.c ../exim_monitor/em_hdr.h
690 em_xs.o: ../exim_monitor/em_xs.c ../exim_monitor/em_hdr.h
691 em_version.o: ../exim_monitor/em_version.c ../exim_monitor/em_hdr.h
693 @echo "$(CC) exim_monitor/`echo $@ | sed 's/o$$/c/'`"
694 $(FE)$(CC) -o $@ -c $(CFLAGS) -I. -I../exim_monitor $(INCLUDE) $(XINCLUDE) \
695 ../exim_monitor/`echo $@ | sed 's/o$$/c/'`
698 # Targets for the various libraries that Exim uses.
700 # The lookups library.
703 @cd lookups && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
704 CFLAGS_DYNAMIC="$(CFLAGS_DYNAMIC)" HDRS="../version.h $(PHDRS)" \
705 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" \
706 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE) $(LOOKUP_INCLUDE)"
709 # The routers library.
712 @cd routers && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
713 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
714 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
717 # The transports library.
719 buildtransports: config
720 @cd transports && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
721 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
722 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
725 # The library of authorization modules
728 @cd auths && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
729 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
730 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
735 buildpdkim: pdkim/pdkim.a
736 pdkim/pdkim.a: config
737 @cd pdkim && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
738 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
739 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
742 # The "clean", "install", and "makefile" targets just pass themselves back to
743 # the main Exim makefile. These targets will be obeyed only if "make" is obeyed
744 # for them in the build directory.
746 clean install makefile:; cd ..; $(MAKE) $(MFLAGS) build=$(build) $@
748 # Targets for building stand-alone testing programs for basic testing of
749 # some of the building blocks. These are not integrated with the makefile-
750 # building targets. If you change something that is going to cause the
751 # makefile to be rebuilt, you must run "make makefile" before running one
754 # The testing programs use different versions of some modules - usually
755 # with bits cut out that are not relevant to the test in hand. For those
756 # that are used by several tests, we use a different name.
758 sa-globals.o: $(HDRS) globals.c
759 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -o sa-globals.o globals.c
761 sa-os.o: $(HDRS) os.c
762 $(CC) -c $(CFLAGS) $(INCLUDE) \
763 -DFIND_RUNNING_INTERFACES \
766 # These are the test targets themselves
768 test_dbfn: config.h dbfn.c dummies.o sa-globals.o sa-os.o store.o \
769 string.o tod.o version.o utf8.o
770 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE dbfn.c
771 $(LNCC) -o test_dbfn $(LFLAGS) dbfn.o \
772 dummies.o sa-globals.o sa-os.o store.o string.o \
773 tod.o version.o utf8.o $(LIBS) $(DBMLIB) $(LDFLAGS)
776 test_host: config.h child.c host.c dns.c dummies.c sa-globals.o os.o \
777 store.o string.o tod.o tree.o
778 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST child.c
779 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST host.c
780 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST dns.c
781 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST dummies.c
782 $(LNCC) -o test_host $(LFLAGS) \
783 host.o child.o dns.o dummies.o sa-globals.o os.o store.o string.o \
784 tod.o tree.o $(LIBS) $(LIBRESOLV)
785 rm -f child.o dummies.o host.o dns.o
787 test_os: os.h os.c dummies.o sa-globals.o store.o string.o tod.o utf8.o
788 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE os.c
789 $(LNCC) -o test_os $(LFLAGS) os.o dummies.o \
790 sa-globals.o store.o string.o tod.o utf8.o $(LIBS) $(LDFLAGS)
793 test_parse: config.h parse.c dummies.o sa-globals.o \
794 store.o string.o tod.o version.o utf8.o
795 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE parse.c
796 $(LNCC) -o test_parse $(LFLAGS) parse.o \
797 dummies.o sa-globals.o store.o string.o tod.o version.o \
801 test_string: config.h string.c dummies.o sa-globals.o store.o tod.o utf8.o
802 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE string.c
803 $(LNCC) -o test_string $(LFLAGS) -DSTAND_ALONE string.o \
804 dummies.o sa-globals.o store.o tod.o utf8.o $(LIBS) $(LDFLAGS)