ac832bc798d4273a38de7faae075e9f1bd35268c
[hcoop/debian/exim4.git] / OS / Makefile-Base
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
6 # build directory.
7
8 SHELL = $(MAKE_SHELL)
9 SCRIPTS = ../scripts
10 EDITME = ../Local/Makefile
11 EXIMON_EDITME = ../Local/eximon.conf
12
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.
16
17 LNCC = $(CC)
18
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.
23
24 FULLECHO = @
25 FE = $(FULLECHO)
26
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.
34
35 all: allexim
36 config: $(EDITME) checklocalmake Makefile os.h os.c config.h version.h
37
38 checklocalmake:
39 @if $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(OSTYPE) $(EDITME) || \
40 $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(ARCHTYPE) $(EDITME) || \
41 $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EDITME); \
42 then \
43 touch $(EDITME); \
44 fi
45 @if $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(OSTYPE) $(EXIMON_EDITME) || \
46 $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(ARCHTYPE) $(EXIMON_EDITME) || \
47 $(SHELL) $(SCRIPTS)/newer $(EXIMON_EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EXIMON_EDITME); \
48 then \
49 if [ -f $(EXIMON_EDITME) ]; then touch $(EXIMON_EDITME); fi \
50 fi
51
52 $(EDITME):
53 @echo " "
54 @echo "*** Please create Local/Makefile by copying src/EDITME and making"
55 @echo "*** appropriate changes for your site."
56 @echo " "
57 @false
58
59 $(EXIMON_EDITME):
60 @echo " "
61 @echo "*** Please create Local/eximon.conf by copying exim_monitor/EDITME and making"
62 @echo "*** appropriate changes for your site."
63 @echo " "
64 @test ! -d ../Local && mkdir ../Local
65 @false
66
67 # Check that the local Makefile is up-to-date
68
69 Makefile: ../OS/Makefile-Base ../OS/Makefile-Default \
70 $(SCRIPTS)/Configure $(SCRIPTS)/Configure-Makefile $(EDITME)
71 @echo " "
72 @echo "*** Makefile needs rebuilding"
73 @echo "*** Please run \"make makefile\" at top level"
74 @echo " "
75 @false
76
77 # Build (link) the os.h file
78
79 os.h:
80 $(SHELL) $(SCRIPTS)/Configure-os.h
81
82 # Build the os.c file
83
84 os.c: ../src/os.c
85 $(SHELL) $(SCRIPTS)/Configure-os.c
86
87 # Build the config.h file.
88
89 config.h: Makefile buildconfig ../src/config.h.defaults $(EDITME)
90 $(SHELL) $(SCRIPTS)/Configure-config.h "$(MAKE)"
91
92
93 # This target is recognized specially by GNU make. It records those targets
94 # that do not correspond to files that are being built and which should
95 # therefore always be run, even if the files exist. This shouldn't in fact be a
96 # problem, but it does no harm. Other make programs will just ignore this.
97
98 .PHONY: all config allexim buildauths buildlookups buildpdkim buildrouters \
99 buildtransports checklocalmake clean
100
101
102 # This is the real default target for all the various exim binaries and
103 # scripts, once the configuring stuff is done.
104
105 allexim: $(EXIM_MONITOR) exicyclog exinext exiwhat \
106 exigrep eximstats exipick exiqgrep exiqsumm \
107 transport-filter.pl convert4r3 convert4r4 \
108 exim_checkaccess \
109 exim_dbmbuild exim_dumpdb exim_fixdb exim_tidydb exim_lock \
110 exim
111
112
113 # Targets for special-purpose configuration header builders
114 buildconfig: buildconfig.c
115 @echo "$(CC) buildconfig.c"
116 $(FE)$(CC) $(CFLAGS) $(INCLUDE) -o buildconfig buildconfig.c $(LIBS)
117
118
119 # Target for the exicyclog utility script
120 exicyclog: config ../src/exicyclog.src
121 @rm -f exicyclog
122 @sed \
123 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
124 -e "/^# /p" \
125 -e "/^# /d" \
126 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
127 -e "s?CONFIGURE_FILE_USE_EUID?$(CONFIGURE_FILE_USE_EUID)?" \
128 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
129 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
130 -e "s?EXICYCLOG_MAX?$(EXICYCLOG_MAX)?" \
131 -e "s?COMPRESS_COMMAND?$(COMPRESS_COMMAND)?" \
132 -e "s?COMPRESS_SUFFIX?$(COMPRESS_SUFFIX)?" \
133 -e "s?CHGRP_COMMAND?$(CHGRP_COMMAND)?" \
134 -e "s?CHMOD_COMMAND?$(CHMOD_COMMAND)?" \
135 -e "s?CHOWN_COMMAND?$(CHOWN_COMMAND)?" \
136 -e "s?MV_COMMAND?$(MV_COMMAND)?" \
137 -e "s?RM_COMMAND?$(RM_COMMAND)?" \
138 -e "s?TOUCH_COMMAND?$(TOUCH_COMMAND)?" \
139 ../src/exicyclog.src > exicyclog-t
140 @mv exicyclog-t exicyclog
141 @chmod a+x exicyclog
142 @echo ">>> exicyclog script built"
143
144 # Target for the exinext utility script
145 exinext: config ../src/exinext.src
146 @rm -f exinext
147 @sed \
148 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
149 -e "/^# /p" \
150 -e "/^# /d" \
151 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
152 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
153 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
154 ../src/exinext.src > exinext-t
155 @mv exinext-t exinext
156 @chmod a+x exinext
157 @echo ">>> exinext script built"
158
159 # Target for the exiwhat utility script
160 exiwhat: config ../src/exiwhat.src
161 @rm -f exiwhat
162 @sed \
163 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
164 -e "/^# /p" \
165 -e "/^# /d" \
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 -e "s?EXIWHAT_PS_CMD?$(EXIWHAT_PS_CMD)?" \
170 -e "s?EXIWHAT_PS_ARG?$(EXIWHAT_PS_ARG)?" \
171 -e "s?EXIWHAT_KILL_SIGNAL?$(EXIWHAT_KILL_SIGNAL)?" \
172 -e "s?EXIWHAT_EGREP_ARG?$(EXIWHAT_EGREP_ARG)?" \
173 -e "s?EXIWHAT_MULTIKILL_CMD?$(EXIWHAT_MULTIKILL_CMD)?" \
174 -e "s?EXIWHAT_MULTIKILL_ARG?$(EXIWHAT_MULTIKILL_ARG)?" \
175 ../src/exiwhat.src > exiwhat-t
176 @mv exiwhat-t exiwhat
177 @chmod a+x exiwhat
178 @echo ">>> exiwhat script built"
179
180 # Target for the exim_checkaccess utility script
181 exim_checkaccess: config ../src/exim_checkaccess.src
182 @rm -f exim_checkaccess
183 @sed \
184 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
185 -e "/^# /p" \
186 -e "/^# /d" \
187 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
188 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
189 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
190 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
191 ../src/exim_checkaccess.src > exim_checkaccess-t
192 @mv exim_checkaccess-t exim_checkaccess
193 @chmod a+x exim_checkaccess
194 @echo ">>> exim_checkaccess script built"; echo ""
195
196 # Target for the Exim monitor start-up script
197 eximon: config ../src/eximon.src ../OS/eximon.conf-Default \
198 ../Local/eximon.conf
199 @rm -f eximon
200 $(SHELL) $(SCRIPTS)/Configure-eximon
201 @sed \
202 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
203 -e "/^# /p" \
204 -e "/^# /d" \
205 -e "s?CONFIGURE_FILE_USE_NODE?$(CONFIGURE_FILE_USE_NODE)?" \
206 -e "s?CONFIGURE_FILE?$(CONFIGURE_FILE)?" \
207 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
208 -e "s?BASENAME_COMMAND?$(BASENAME_COMMAND)?" \
209 -e "s?HOSTNAME_COMMAND?$(HOSTNAME_COMMAND)?" \
210 -e "s?X11_LD_LIBRARY?$(X11_LD_LIB)?" \
211 ../src/eximon.src >> eximon
212 @echo ">>> eximon script built"; echo ""
213
214 # Targets for utilities; these are all Perl scripts that have to get the
215 # location of Perl put in them. A few need other things as well.
216
217 exigrep: Makefile ../src/exigrep.src
218 @rm -f exigrep
219 @sed \
220 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
221 -e "/^# /p" \
222 -e "/^# /d" \
223 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
224 -e "s?ZCAT_COMMAND?$(ZCAT_COMMAND)?" \
225 -e "s?COMPRESS_SUFFIX?$(COMPRESS_SUFFIX)?" \
226 ../src/exigrep.src > exigrep-t
227 @mv exigrep-t exigrep
228 @chmod a+x exigrep
229 @echo ">>> exigrep script built"
230
231 eximstats: Makefile ../src/eximstats.src
232 @rm -f eximstats
233 @sed \
234 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
235 ../src/eximstats.src > eximstats-t
236 @mv eximstats-t eximstats
237 @chmod a+x eximstats
238 @echo ">>> eximstats script built"
239
240 exiqgrep: Makefile ../src/exiqgrep.src
241 @rm -f exiqgrep
242 @sed \
243 -e "s?PROCESSED_FLAG?This file has been so processed.?"\
244 -e "/^# /p" \
245 -e "/^# /d" \
246 -e "s?BIN_DIRECTORY?$(BIN_DIRECTORY)?" \
247 -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
248 ../src/exiqgrep.src > exiqgrep-t
249 @mv exiqgrep-t exiqgrep
250 @chmod a+x exiqgrep
251 @echo ">>> exiqgrep script built"
252
253 exiqsumm: Makefile ../src/exiqsumm.src
254 @rm -f exiqsumm
255 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
256 ../src/exiqsumm.src > exiqsumm-t
257 @mv exiqsumm-t exiqsumm
258 @chmod a+x exiqsumm
259 @echo ">>> exiqsumm script built"
260
261 exipick: Makefile ../src/exipick.src
262 @rm -f exipick
263 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
264 -e "s?SPOOL_DIRECTORY?$(SPOOL_DIRECTORY)?" \
265 ../src/exipick.src > exipick-t
266 @mv exipick-t exipick
267 @chmod a+x exipick
268 @echo ">>> exipick script built"
269
270 transport-filter.pl: Makefile ../src/transport-filter.src
271 @rm -f transport-filter.pl
272 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
273 ../src/transport-filter.src > transport-filter.pl-t
274 @mv transport-filter.pl-t transport-filter.pl
275 @chmod a+x transport-filter.pl
276 @echo ">>> transport-filter.pl script built"
277
278 convert4r3: Makefile ../src/convert4r3.src
279 @rm -f convert4r3
280 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
281 ../src/convert4r3.src > convert4r3-t
282 @mv convert4r3-t convert4r3
283 @chmod a+x convert4r3
284 @echo ">>> convert4r3 script built"
285
286 convert4r4: Makefile ../src/convert4r4.src
287 @rm -f convert4r4
288 @sed -e "s?PERL_COMMAND?$(PERL_COMMAND)?" \
289 ../src/convert4r4.src > convert4r4-t
290 @mv convert4r4-t convert4r4
291 @chmod a+x convert4r4
292 @echo ">>> convert4r4 script built"
293
294
295 # These are objects of optional features. They are always compiled, but
296 # if the corresponding #defines are not set, they wind up empty and
297 # are thrown away by the linker.
298
299 OBJ_WITH_CONTENT_SCAN = malware.o mime.o regex.o spam.o spool_mbox.o
300 OBJ_WITH_OLD_DEMIME = demime.o
301 OBJ_EXPERIMENTAL = bmi_spam.o spf.o srs.o dcc.o dmarc.o
302
303 # Targets for final binaries; the main one has a build number which is
304 # updated each time. We don't bother with that for the auxiliaries.
305
306 OBJ_LOOKUPS = lookups/lf_quote.o lookups/lf_check_file.o lookups/lf_sqlperform.o
307
308 OBJ_EXIM = acl.o child.o crypt16.o daemon.o dbfn.o debug.o deliver.o \
309 directory.o dns.o drtables.o enq.o exim.o expand.o filter.o \
310 filtertest.o globals.o dkim.o \
311 header.o host.o ip.o log.o lss.o match.o moan.o \
312 os.o parse.o queue.o \
313 rda.o readconf.o receive.o retry.o rewrite.o rfc2047.o \
314 route.o search.o sieve.o smtp_in.o smtp_out.o spool_in.o spool_out.o \
315 std-crypto.o store.o string.o tls.o tod.o transport.o tree.o verify.o \
316 environment.o \
317 $(OBJ_LOOKUPS) \
318 local_scan.o $(EXIM_PERL) $(OBJ_WITH_CONTENT_SCAN) \
319 $(OBJ_WITH_OLD_DEMIME) $(OBJ_EXPERIMENTAL)
320
321 exim: buildlookups buildauths pdkim/pdkim.a \
322 buildrouters buildtransports \
323 $(OBJ_EXIM) version.o
324 @echo "$(LNCC) -o exim"
325 $(FE)$(PURIFY) $(LNCC) -o exim $(LFLAGS) $(OBJ_EXIM) version.o \
326 routers/routers.a transports/transports.a lookups/lookups.a \
327 auths/auths.a pdkim/pdkim.a \
328 $(LIBRESOLV) $(LIBS) $(LIBS_EXIM) $(IPV6_LIBS) $(EXTRALIBS) \
329 $(EXTRALIBS_EXIM) $(DBMLIB) $(LOOKUP_LIBS) $(AUTH_LIBS) \
330 $(PERL_LIBS) $(TLS_LIBS) $(PCRE_LIBS) $(LDFLAGS)
331 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
332 echo $(STRIP_COMMAND) exim; \
333 $(STRIP_COMMAND) exim; \
334 fi
335 $(EXIM_CHMOD)
336 @echo " "
337 @echo ">>> exim binary built"
338 @echo " "
339
340 # The utility for dumping the contents of an exim database
341
342 OBJ_DUMPDB = exim_dumpdb.o util-os.o util-store.o
343
344 exim_dumpdb: $(OBJ_DUMPDB)
345 @echo "$(LNCC) -o exim_dumpdb"
346 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_dumpdb $(LFLAGS) $(OBJ_DUMPDB) \
347 $(LIBS) $(EXTRALIBS) $(DBMLIB)
348 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
349 echo $(STRIP_COMMAND) exim_dumpdb; \
350 $(STRIP_COMMAND) exim_dumpdb; \
351 fi
352 @echo ">>> exim_dumpdb utility built"
353 @echo " "
354
355 # The utility for interrogating/fixing the contents of an exim database
356
357 OBJ_FIXDB = exim_fixdb.o util-os.o util-store.o
358
359 exim_fixdb: $(OBJ_FIXDB) buildauths
360 @echo "$(LNCC) -o exim_fixdb"
361 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_fixdb $(LFLAGS) $(OBJ_FIXDB) \
362 auths/auths.a $(LIBS) $(EXTRALIBS) $(DBMLIB)
363 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
364 echo $(STRIP_COMMAND) exim_fixdb; \
365 $(STRIP_COMMAND) exim_fixdb; \
366 fi
367 @echo ">>> exim_fixdb utility built"
368 @echo " "
369
370 # The utility for tidying the contents of an exim database
371
372 OBJ_TIDYDB = exim_tidydb.o util-os.o util-store.o
373
374 exim_tidydb: $(OBJ_TIDYDB)
375 @echo "$(LNCC) -o exim_tidydb"
376 $(FE)$(LNCC) $(CFLAGS) $(INCLUDE) -o exim_tidydb $(LFLAGS) $(OBJ_TIDYDB) \
377 $(LIBS) $(EXTRALIBS) $(DBMLIB)
378 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
379 echo $(STRIP_COMMAND) exim_tidydb; \
380 $(STRIP_COMMAND) exim_tidydb; \
381 fi
382 @echo ">>> exim_tidydb utility built"
383 @echo " "
384
385 # The utility for building dbm files
386
387 exim_dbmbuild: exim_dbmbuild.o
388 @echo "$(LNCC) -o exim_dbmbuild"
389 $(FE)$(LNCC) -o exim_dbmbuild $(LFLAGS) exim_dbmbuild.o \
390 $(LIBS) $(EXTRALIBS) $(DBMLIB)
391 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
392 echo $(STRIP_COMMAND) exim_dbmbuild; \
393 $(STRIP_COMMAND) exim_dbmbuild; \
394 fi
395 @echo ">>> exim_dbmbuild utility built"
396 @echo " "
397
398 # The utility for locking a mailbox while messing around with it
399
400 exim_lock: exim_lock.c
401 @echo "$(CC) exim_lock.c"
402 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) exim_lock.c
403 @echo "$(LNCC) -o exim_lock"
404 $(FE)$(LNCC) -o exim_lock $(LFLAGS) exim_lock.o \
405 $(LIBS) $(EXTRALIBS)
406 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
407 echo $(STRIP_COMMAND) exim_lock; \
408 $(STRIP_COMMAND) exim_lock; \
409 fi
410 @echo ">>> exim_lock utility built"
411 @echo " "
412
413 # The X-based Exim monitor program's binary part. There's a macro for cutting
414 # out the modified TextPop module, because some antique link editors cannot
415 # handle the fact that it is redefining things that are found later in the
416 # Xaw library.
417
418 # Object modules that are the unique Eximon modules
419
420 MONBIN = em_StripChart.o $(EXIMON_TEXTPOP) em_globals.o em_init.o \
421 em_log.o em_main.o em_menu.o em_queue.o em_strip.o \
422 em_text.o em_xs.o
423
424 # The complete modules list also includes some specially compiled versions of
425 # code from the main Exim source tree.
426
427 OBJ_MONBIN = util-spool_in.o util-store.o util-string.o tod.o tree.o $(MONBIN)
428
429 eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) \
430 ../exim_monitor/em_version.c
431 @echo "$(CC) exim_monitor/em_version.c"
432 $(FE)$(CC) -o em_version.o -c \
433 $(CFLAGS) $(XINCLUDE) -I. ../exim_monitor/em_version.c
434 @echo "$(LNCC) -o eximon.bin"
435 $(FE)$(PURIFY) $(LNCC) -o eximon.bin em_version.o $(LFLAGS) $(XLFLAGS) \
436 $(OBJ_MONBIN) -lXaw -lXmu -lXt -lXext -lX11 $(PCRE_LIBS) \
437 $(LIBS) $(LIBS_EXIMON) $(EXTRALIBS) $(EXTRALIBS_EXIMON) -lc
438 @if [ x"$(STRIP_COMMAND)" != x"" ]; then \
439 echo $(STRIP_COMMAND) eximon.bin; \
440 $(STRIP_COMMAND) eximon.bin; \
441 fi
442 @echo ">>> exim monitor binary built"
443 @echo " "
444
445
446 # Compile step for most of the exim modules. HDRS is a list of headers
447 # which cause everthing to be rebuilt. PHDRS is the same, for the use
448 # of routers, transports, and authenticators. I can't find a way of doing this
449 # in one. This list is overkill, but it doesn't really take much time to
450 # rebuild Exim on a modern computer.
451
452 HDRS = config.h dbfunctions.h dbstuff.h exim.h functions.h globals.h local_scan.h macros.h mytypes.h structs.h
453 PHDRS = ../config.h ../dbfunctions.h ../dbstuff.h ../exim.h ../functions.h ../globals.h ../local_scan.h ../macros.h ../mytypes.h ../structs.h
454
455 .SUFFIXES: .o .c
456 .c.o:; @echo "$(CC) $*.c"
457 $(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE) $*.c
458
459 # Update Exim's version information and build the version object.
460
461 version.h::
462 @../scripts/reversion
463
464 cnumber.h: version.h
465
466 version.o: $(HDRS) cnumber.h version.h version.c
467
468 # This is the dummy module for use by test compiles of individual modules. It
469 # contains functions such as log_write() that may be called from bits of Exim
470 # in the tested code.
471
472 dummies.o: dummies.c
473
474 # Compile instructions for perl.o for when EXIM_PERL is set
475
476 perl.o: $(HDRS) perl.c
477 @echo "$(PERL_CC) perl.c"
478 $(FE)$(PERL_CC) $(PERL_CCOPTS) $(CFLAGS) $(INCLUDE) -c perl.c
479
480 # Compile instructions for the database utility modules
481
482 exim_dumpdb.o: $(HDRS) exim_dbutil.c
483 @echo "$(CC) -DEXIM_DUMPDB exim_dbutil.c"
484 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
485 -DCOMPILE_UTILITY \
486 -DEXIM_DUMPDB \
487 -o exim_dumpdb.o exim_dbutil.c
488
489 exim_fixdb.o: $(HDRS) exim_dbutil.c
490 @echo "$(CC) -DEXIM_FIXDB exim_dbutil.c"
491 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
492 -DCOMPILE_UTILITY \
493 -DEXIM_FIXDB \
494 -o exim_fixdb.o exim_dbutil.c
495
496 exim_tidydb.o: $(HDRS) exim_dbutil.c
497 @echo "$(CC) -DEXIM_TIDYDB exim_dbutil.c"
498 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
499 -DCOMPILE_UTILITY \
500 -DEXIM_TIDYDB \
501 -o exim_tidydb.o exim_dbutil.c
502
503 # Compile instructions for exim_dbmbuild
504
505 exim_dbmbuild.o: $(HDRS) exim_dbmbuild.c
506 @echo "$(CC) exim_dbmbuild.c"
507 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -o exim_dbmbuild.o exim_dbmbuild.c
508
509 # Utilities use special versions of some modules - typically with debugging
510 # calls cut out.
511
512 util-spool_in.o: $(HDRS) spool_in.c
513 @echo "$(CC) -DCOMPILE_UTILITY spool_in.c"
514 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-spool_in.o spool_in.c
515
516 util-store.o: $(HDRS) store.c
517 @echo "$(CC) -DCOMPILE_UTILITY store.c"
518 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-store.o store.c
519
520 util-string.o: $(HDRS) string.c
521 @echo "$(CC) -DCOMPILE_UTILITY string.c"
522 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -DCOMPILE_UTILITY -o util-string.o string.c
523
524 util-os.o: $(HDRS) os.c
525 @echo "$(CC) -DCOMPILE_UTILITY os.c"
526 $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) \
527 -DCOMPILE_UTILITY \
528 -DOS_LOAD_AVERAGE \
529 -DFIND_RUNNING_INTERFACES \
530 -o util-os.o os.c
531
532 # The local scan module depends only on its own special header, and is compiled
533 # from a source whose location is set by configuration.
534
535 local_scan.o: config local_scan.h ../$(LOCAL_SCAN_SOURCE)
536 @echo "$(CC) local_scan.c"
537 $(FE)$(CC) -c $(CFLAGS) -I. $(INCLUDE) -o local_scan.o ../$(LOCAL_SCAN_SOURCE)
538
539 # Dependencies for the "ordinary" exim modules
540
541 acl.o: $(HDRS) acl.c
542 child.o: $(HDRS) child.c
543 crypt16.o: $(HDRS) crypt16.c
544 daemon.o: $(HDRS) daemon.c
545 dbfn.o: $(HDRS) dbfn.c
546 debug.o: $(HDRS) debug.c
547 deliver.o: $(HDRS) deliver.c
548 directory.o: $(HDRS) directory.c
549 dns.o: $(HDRS) dns.c
550 enq.o: $(HDRS) enq.c
551 exim.o: $(HDRS) exim.c
552 expand.o: $(HDRS) expand.c
553 environment.o: $(HDRS) environment.c
554 filter.o: $(HDRS) filter.c
555 filtertest.o: $(HDRS) filtertest.c
556 globals.o: $(HDRS) globals.c
557 header.o: $(HDRS) header.c
558 host.o: $(HDRS) host.c
559 ip.o: $(HDRS) ip.c
560 log.o: $(HDRS) log.c
561 lss.o: $(HDRS) lss.c
562 match.o: $(HDRS) match.c
563 moan.o: $(HDRS) moan.c
564 os.o: $(HDRS) os.c
565 parse.o: $(HDRS) parse.c
566 queue.o: $(HDRS) queue.c
567 rda.o: $(HDRS) rda.c
568 readconf.o: $(HDRS) readconf.c
569 receive.o: $(HDRS) receive.c
570 retry.o: $(HDRS) retry.c
571 rewrite.o: $(HDRS) rewrite.c
572 rfc2047.o: $(HDRS) rfc2047.c
573 route.o: $(HDRS) route.c
574 search.o: $(HDRS) search.c
575 sieve.o: $(HDRS) sieve.c
576 smtp_in.o: $(HDRS) smtp_in.c
577 smtp_out.o: $(HDRS) smtp_out.c
578 spool_in.o: $(HDRS) spool_in.c
579 spool_out.o: $(HDRS) spool_out.c
580 std-crypto.o: $(HDRS) std-crypto.c
581 store.o: $(HDRS) store.c
582 string.o: $(HDRS) string.c
583 tls.o: $(HDRS) tls.c tls-gnu.c tlscert-gnu.c tls-openssl.c tlscert-openssl.c
584 tod.o: $(HDRS) tod.c
585 transport.o: $(HDRS) transport.c
586 tree.o: $(HDRS) tree.c
587 verify.o: $(HDRS) verify.c
588 dkim.o: $(HDRS) dkim.c
589
590 # Dependencies for WITH_CONTENT_SCAN modules
591
592 malware.o: $(HDRS) malware.c
593 mime.o: $(HDRS) mime.c
594 regex.o: $(HDRS) regex.c
595 spam.o: $(HDRS) spam.c
596 spool_mbox.o: $(HDRS) spool_mbox.c
597
598
599 # Dependencies for WITH_OLD_DEMIME modules
600
601 demime.o: $(HDRS) demime.c
602
603
604 # Dependencies for EXPERIMENTAL_* modules
605
606 bmi_spam.o: $(HDRS) bmi_spam.c
607 spf.o: $(HDRS) spf.h spf.c
608 srs.o: $(HDRS) srs.h srs.c
609 dcc.o: $(HDRS) dcc.h dcc.c
610 dmarc.o: $(HDRS) dmarc.h dmarc.c
611
612 # The module containing tables of available lookups, routers, auths, and
613 # transports must be rebuilt if any of them are. However, because the makefiles
614 # for the drivers are always run, we don't actually put the dependencies here,
615 # because if we do, some version of "make" (e.g. IRIX) insist on rebuilding
616 # drtables.o even though the .a files haven't in fact been updated. Instead
617 # it is arranged that the lower-level makefiles remove drtables.o when they
618 # rebuild the .a files.
619
620 drtables.o: $(HDRS) drtables.c
621
622 # We depend upon object files built as part of building the lookups library
623 # When using parallel make, we don't have the dependency to force building
624 # in the sub-directory unless we force that dependency:
625
626 $(OBJ_LOOKUPS): buildlookups
627
628 # The exim monitor's private modules - the sources live in a private
629 # subdirectory. The final binary combines the private modules with some
630 # modules from the main exim binary.
631
632 em_StripChart.o: ../exim_monitor/em_StripChart.c
633 em_TextPop.o: ../exim_monitor/em_TextPop.c
634 em_globals.o: ../exim_monitor/em_globals.c ../exim_monitor/em_hdr.h
635 em_init.o: ../exim_monitor/em_init.c ../exim_monitor/em_hdr.h
636 em_log.o: ../exim_monitor/em_log.c ../exim_monitor/em_hdr.h
637 em_main.o: ../exim_monitor/em_main.c ../exim_monitor/em_hdr.h
638 em_menu.o: ../exim_monitor/em_menu.c ../exim_monitor/em_hdr.h
639 em_queue.o: ../exim_monitor/em_queue.c ../exim_monitor/em_hdr.h
640 em_strip.o: ../exim_monitor/em_strip.c ../exim_monitor/em_hdr.h
641 em_text.o: ../exim_monitor/em_text.c ../exim_monitor/em_hdr.h
642 em_xs.o: ../exim_monitor/em_xs.c ../exim_monitor/em_hdr.h
643 em_version.o: ../exim_monitor/em_version.c ../exim_monitor/em_hdr.h
644 $(MONBIN): $(HDRS)
645 @echo "$(CC) exim_monitor/`echo $@ | sed 's/o$$/c/'`"
646 $(FE)$(CC) -o $@ -c $(CFLAGS) -I. -I../exim_monitor $(INCLUDE) $(XINCLUDE) \
647 ../exim_monitor/`echo $@ | sed 's/o$$/c/'`
648
649
650 # Targets for the various libraries that Exim uses.
651
652 # The lookups library.
653
654 buildlookups: config
655 @cd lookups && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
656 CFLAGS_DYNAMIC="$(CFLAGS_DYNAMIC)" HDRS="../version.h $(PHDRS)" \
657 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" \
658 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE) $(LOOKUP_INCLUDE)"
659 @echo " "
660
661 # The routers library.
662
663 buildrouters: config
664 @cd routers && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
665 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
666 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
667 @echo " "
668
669 # The transports library.
670
671 buildtransports: config
672 @cd transports && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
673 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
674 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
675 @echo " "
676
677 # The library of authorization modules
678
679 buildauths: config
680 @cd auths && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
681 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
682 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
683 @echo " "
684
685 # The PDKIM library
686
687 buildpdkim: pdkim/pdkim.a
688 pdkim/pdkim.a: config
689 @cd pdkim && $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
690 FE="$(FE)" RANLIB="$(RANLIB)" RM_COMMAND="$(RM_COMMAND)" HDRS="$(PHDRS)" \
691 INCLUDE="$(INCLUDE) $(IPV6_INCLUDE) $(TLS_INCLUDE)"
692 @echo " "
693
694 # The "clean", "install", and "makefile" targets just pass themselves back to
695 # the main Exim makefile. These targets will be obeyed only if "make" is obeyed
696 # for them in the build directory.
697
698 clean install makefile:; cd ..; $(MAKE) $(MFLAGS) build=$(build) $@
699
700 # Targets for building stand-alone testing programs for basic testing of
701 # some of the building blocks. These are not integrated with the makefile-
702 # building targets. If you change something that is going to cause the
703 # makefile to be rebuilt, you must run "make makefile" before running one
704 # of these.
705
706 # The testing programs use different versions of some modules - usually
707 # with bits cut out that are not relevant to the test in hand. For those
708 # that are used by several tests, we use a different name.
709
710 sa-globals.o: $(HDRS) globals.c
711 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -o sa-globals.o globals.c
712
713 sa-os.o: $(HDRS) os.c
714 $(CC) -c $(CFLAGS) $(INCLUDE) \
715 -DFIND_RUNNING_INTERFACES \
716 -o sa-os.o os.c
717
718 # These are the test targets themselves
719
720 test_dbfn: config.h dbfn.c dummies.o sa-globals.o sa-os.o store.o \
721 string.o tod.o version.o
722 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE dbfn.c
723 $(LNCC) -o test_dbfn $(LFLAGS) dbfn.o \
724 dummies.o sa-globals.o sa-os.o store.o string.o \
725 tod.o version.o $(LIBS) $(DBMLIB)
726 rm -f dbfn.o
727
728 test_host: config.h child.c host.c dns.c dummies.c sa-globals.o os.o \
729 store.o string.o tod.o tree.o
730 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST child.c
731 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST host.c
732 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST dns.c
733 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE -DTEST_HOST dummies.c
734 $(LNCC) -o test_host $(LFLAGS) \
735 host.o child.o dns.o dummies.o sa-globals.o os.o store.o string.o \
736 tod.o tree.o $(LIBS) $(LIBRESOLV)
737 rm -f child.o dummies.o host.o dns.o
738
739 test_os: os.h os.c dummies.o sa-globals.o store.o string.o tod.o
740 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE os.c
741 $(LNCC) -o test_os $(LFLAGS) os.o dummies.o \
742 sa-globals.o store.o string.o tod.o $(LIBS)
743 rm -f os.o
744
745 test_parse: config.h parse.c dummies.o sa-globals.o \
746 store.o string.o tod.o version.o
747 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE parse.c
748 $(LNCC) -o test_parse $(LFLAGS) parse.o \
749 dummies.o sa-globals.o store.o string.o tod.o version.o
750 rm -f parse.o
751
752 test_string: config.h string.c dummies.o sa-globals.o store.o tod.o
753 $(CC) -c $(CFLAGS) $(INCLUDE) -DSTAND_ALONE string.c
754 $(LNCC) -o test_string $(LFLAGS) -DSTAND_ALONE string.o \
755 dummies.o sa-globals.o store.o tod.o $(LIBS)
756 rm -f string.o
757
758 # End