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