1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
|
# Main makefile for Exim and friends. This is a generic file which first
# arranges to build a make file in the build directory if it is not present.
SCRIPTS = ../scripts
SAMPLELINK = version.c
EDITME = ../Local/Makefile
EXIMON_EDITME = ../Local/eximon.conf
# Initial target checks for the existence of a site configuration file,
# created by editing EDITME, but first it arranges to touch the site
# configuration if it exists and any of the optional configuration files,
# depending on the os or the architecture, have been altered. It then checks
# for the existence of one symbolic link to be on the safe side, and builds the
# links if necessary. Next, it arranges to create a local makefile in the
# current directory if it does not exist. If makefile is rebuilt, it is run
# in order to do the work using the new settings; this turns out to be
# immensely tedious to get to work. "Make" is not a convenient programming
# language. Firstly, you can't force make to stop without it giving an
# error message, so you need a "makefile rebuilt" flag to stop subsequent
# targets in the top makefile from being processed - although that does no
# harm, it does cause annoying messages. There is also the difficulty of
# detecting when the rebuild has happened so that a nested make can be
# called. The same flag is used for both this things: it is a file called
# makefile-rebuilt. The premakefile target ensures it does not exist; the
# postmakefile target calls an nested make if it does, and then recreates it
# (since the nested make will have remoted it again). Then the targets
# that are affected (libident.a, pcre.a, lookups.a, directors.a, routers.a, and
# transports.a) test for the file and don't try to rebuild if it is set.
# In the last of these, we remove the file. As nothing should fail while this
# is going on, we should never get left with the file existing when it
# shouldn't. However, that doesn't matter as it is removed at the start; this
# is necessary in case an explicit "make makefile" is called because that will
# leave it around.
all: checklocalmake $(EDITME) $(SAMPLELINK) premakefile makefile \
postmakefile os.h os.c config.h allexim
checklocalmake:
@if ../scripts/newer $(EDITME)-$(OSTYPE) $(EDITME) || \
../scripts/newer $(EDITME)-$(ARCHTYPE) $(EDITME) || \
../scripts/newer $(EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EDITME); \
then \
if [ -f $(EDITME) ]; then touch $(EDITME); fi \
fi
@if ../scripts/newer $(EXIMON_EDITME)-$(OSTYPE) $(EXIMON_EDITME) || \
../scripts/newer $(EXIMON_EDITME)-$(ARCHTYPE) $(EXIMON_EDITME) || \
../scripts/newer $(EXIMON_EDITME)-$(OSTYPE)-$(ARCHTYPE) $(EXIMON_EDITME); \
then \
if [ -f $(EXIMON_EDITME) ]; then touch $(EXIMON_EDITME); fi \
fi
@echo ""
$(SAMPLELINK):
../MakeLinks
$(EDITME):
@echo ""
@echo "*** Please create Local/Makefile by copying src/EDITME and making"
@echo "*** appropriate changes for your site."
@echo ""
@test ! -d ../Local && mkdir ../Local
@false
$(EXIMON_EDITME):
@echo ""
@echo "*** Please create Local/eximon.conf by copying exim_monitor/EDITME and making"
@echo "*** appropriate changes for your site."
@echo ""
@test ! -d ../Local && mkdir ../Local
@false
# Ensure that the makefile-rebuilt flag file does not exist
premakefile:
@/bin/rm -f makefile-rebuilt
# Build the local makefile and create makefile-rebuilt if it was rebuilt
makefile: ../OS/Makefile-Base ../OS/Makefile-Default ../scripts/Configure $(EDITME)
$(SHELL) $(SCRIPTS)/Configure-makefile
@touch makefile-rebuilt
# If the local makefile was rebuilt, run it, and then put the flag
# back, because running the makefile will have removed it (necessarily,
# in order to get the drivers to build).
postmakefile:
@if [ -f makefile-rebuilt ] ; then \
$(MAKE) -f makefile ; \
touch makefile-rebuilt ; \
fi
# Build (link) the os.h file
os.h:
$(SCRIPTS)/Configure-os.h
# Build the os.c file
os.c: ../src/os.c
$(SCRIPTS)/Configure-os.c
# Build the config.h file.
config.h: makefile buildconfig ../src/config.h.defaults $(EDITME)
$(SCRIPTS)/Configure-config.h
# This is the real default target for all the various exim binaries and
# scripts, once the configuring stuff is done.
allexim: config.h $(EXIM_MONITOR) exicyclog exinext exiwhat \
../util/exigrep ../util/eximstats ../util/exiqsumm \
../util/transport-filter.pl \
exim_dbmbuild exim_dumpdb exim_fixdb exim_tidydb exim_lock \
exim
# The installation commands are kept in a separate script
install:
$(SCRIPTS)/exim_install
# Targets for special-purpose configuration header builders
buildconfig: buildconfig.c
$(CC) $(CFLAGS) $(INCLUDE) -o buildconfig buildconfig.c $(LIBS)
# Target for setting up the file containing the compile number
cnumber.h:; @echo "0" > cnumber.h
# Target for the exicyclog utility script
exicyclog: makefile config.h ../src/exicyclog.src
@rm -f exicyclog
sed -e s?CONFIGURE_FILE?$(CONFIGURE_FILE)? \
-e s?BIN_DIRECTORY?$(BIN_DIRECTORY)? \
-e s?EXICYCLOG_MAX?$(EXICYCLOG_MAX)? \
-e s?COMPRESS_COMMAND?$(COMPRESS_COMMAND)? \
-e s?COMPRESS_SUFFIX?$(COMPRESS_SUFFIX)? \
-e s?CHOWN_COMMAND?$(CHOWN_COMMAND)? \
-e s?CHGRP_COMMAND?$(CHGRP_COMMAND)? \
-e s?MV_COMMAND?$(MV_COMMAND)? \
-e s?RM_COMMAND?$(RM_COMMAND)? \
../src/exicyclog.src > exicyclog-t
@mv exicyclog-t exicyclog
@chmod a+x exicyclog
@echo ">>> exicyclog script built"; echo ""
# Target for the exinext utility script
exinext: makefile config.h ../src/exinext.src
@rm -f exinext
sed -e s?CONFIGURE_FILE?$(CONFIGURE_FILE)? -e s?BIN_DIRECTORY?$(BIN_DIRECTORY)? ../src/exinext.src > exinext-t
@mv exinext-t exinext
@chmod a+x exinext
@echo ">>> exinext script built"; echo ""
# Target for the exiwhat utility script
exiwhat: makefile config.h ../src/exiwhat.src
@rm -f exiwhat
sed -e s?CONFIGURE_FILE?$(CONFIGURE_FILE)? \
-e s?BIN_DIRECTORY?$(BIN_DIRECTORY)? \
-e s?EXIWHAT_PS_CMD?$(EXIWHAT_PS_CMD)? \
-e s?EXIWHAT_PS_ARG?$(EXIWHAT_PS_ARG)? \
-e s?EXIWHAT_KILL_ARG?$(EXIWHAT_KILL_ARG)? \
-e s?EXIWHAT_EGREP_ARG?$(EXIWHAT_EGREP_ARG)? \
../src/exiwhat.src > exiwhat-t
@mv exiwhat-t exiwhat
@chmod a+x exiwhat
@echo ">>> exiwhat script built"; echo ""
# Target for the Exim monitor start-up script
eximon: makefile config.h ../src/eximon.src ../OS/eximon.conf-Default ../Local/eximon.conf
@rm -f eximon
../scripts/Configure-eximon
sed -e s?CONFIGURE_FILE?$(CONFIGURE_FILE)? \
-e s?BIN_DIRECTORY?$(BIN_DIRECTORY)? \
-e s?BASENAME_COMMAND?$(BASENAME_COMMAND)? \
-e s?HOSTNAME_COMMAND?$(HOSTNAME_COMMAND)? \
-e s?X11_LD_LIBRARY?$(X11_LD_LIB)? \
../src/eximon.src >> eximon
@echo ">>> eximon script built"; echo ""
# Targets for utilities in the util directory; these are all Perl
# scripts that simply have to get the location of Perl put in them.
../util/exigrep: makefile ../src/exigrep.src
@rm -f ../util/exigrep
sed -e s?PERL_COMMAND?$(PERL_COMMAND)? \
../src/exigrep.src > ../util/exigrep-t
@mv ../util/exigrep-t ../util/exigrep
@chmod a+x ../util/exigrep
@echo ">>> exigrep script built in util directory"; echo ""
../util/eximstats: makefile ../src/eximstats.src
@rm -f ../util/eximstats
sed -e s?PERL_COMMAND?$(PERL_COMMAND)? \
../src/eximstats.src > ../util/eximstats-t
@mv ../util/eximstats-t ../util/eximstats
@chmod a+x ../util/eximstats
@echo ">>> eximstats script built in util directory"; echo ""
../util/exiqsumm: makefile ../src/exiqsumm.src
@rm -f ../util/exiqsumm
sed -e s?PERL_COMMAND?$(PERL_COMMAND)? \
../src/exiqsumm.src > ../util/exiqsumm-t
@mv ../util/exiqsumm-t ../util/exiqsumm
@chmod a+x ../util/exiqsumm
@echo ">>> exiqsumm script built in util directory"; echo ""
../util/transport-filter.pl: makefile ../src/transport-filter.src
@rm -f ../util/transport-filter.pl
sed -e s?PERL_COMMAND?$(PERL_COMMAND)? \
../src/transport-filter.src > ../util/transport-filter.pl-t
@mv ../util/transport-filter.pl-t ../util/transport-filter.pl
@chmod a+x ../util/transport-filter.pl
@echo ">>> transport-filter.pl script built in util directory"; echo ""
# Targets for final binaries; the main one has a build number which is
# updated each time. We don't bother with that for the auxiliaries.
OBJ_EXIM = accept.o child.o daemon.o dbfn.o debug.o deliver.o direct.o \
directory.o dns.o drtables.o exim.o expand.o filter.o globals.o \
header.o host.o log.o match.o moan.o os.o parse.o queue.o \
readconf.o retry.o \
rewrite.o route.o search.o smtp_in.o spool_in.o spool_out.o \
store.o string.o tod.o transport.o tree.o verify.o version.o
exim: lookups/lookups.a \
directors/directors.a routers/routers.a transports/transports.a \
$(OBJ_EXIM)
awk '{ print ($$1+1) }' cnumber.h > cnumber.temp
/bin/rm -f cnumber.h; mv cnumber.temp cnumber.h
$(CC) -c $(CFLAGS) $(INCLUDE) $(IPV6_INCLUDE) version.c
/bin/rm -f exim
$(CC) -o exim $(LFLAGS) $(OBJ_EXIM) \
-lident -lpcre directors/directors.a \
routers/routers.a transports/transports.a lookups/lookups.a \
$(LIBS) $(IPV6_LIBS) $(EXTRALIBS) $(DBMLIB) $(LIBRESOLV) \
$(LOOKUP_LIBS)
$(EXIM_CHMOD)
@echo " "
@echo ">>> exim binary built"
@echo " "
# The utility for interrogating/fixing the contents of an exim database
OBJ_FIXDB = exim_fixdb.o dbfn.o dummies.o os.o store.o string.o
exim_fixdb: $(OBJ_FIXDB)
$(CC) $(CFLAGS) $(INCLUDE) -o exim_fixdb $(LFLAGS) $(OBJ_FIXDB) $(LIBS) \
$(EXTRALIBS) $(DBMLIB)
@echo " "
@echo ">>> exim_fixdb utility built"
@echo " "
# The utility for dumping the contents of an exim database
OBJ_DUMPDB = exim_dumpdb.o dbfn.o dummies.o os.o store.o string.o
exim_dumpdb: $(OBJ_DUMPDB)
$(CC) $(CFLAGS) $(INCLUDE) -o exim_dumpdb $(LFLAGS) $(OBJ_DUMPDB) $(LIBS) \
$(EXTRALIBS) $(DBMLIB)
@echo " "
@echo ">>> exim_dumpdb utility built"
@echo " "
# The utility for tidying the contents of an exim database
OBJ_TIDYDB = exim_tidydb.o dbfn.o dummies.o os.o store.o string.o
exim_tidydb: $(OBJ_TIDYDB)
$(CC) $(CFLAGS) $(INCLUDE) -o exim_tidydb $(LFLAGS) $(OBJ_TIDYDB) $(LIBS) \
$(EXTRALIBS) $(DBMLIB)
@echo " "
@echo ">>> exim_tidydb utility built"
@echo " "
# The utility for building dbm files
exim_dbmbuild: exim_dbmbuild.c os.o config.h
$(CC) $(CFLAGS) $(INCLUDE) -o exim_dbmbuild $(LFLAGS) exim_dbmbuild.c os.o \
$(LIBS) $(EXTRALIBS) $(DBMLIB)
@echo " "
@echo ">>> exim_dbmbuild utility built"
@echo " "
# The utility for locking a mailbox while messing around with it
exim_lock: exim_lock.c
$(CC) $(CFLAGS) $(INCLUDE) -o exim_lock $(LFLAGS) exim_lock.c \
$(LIBS) $(EXTRALIBS)
@echo " "
@echo ">>> exim_lock utility built"
@echo " "
# The X-based Exim monitor program's binary part. There's a macro for cutting
# out the modified TextPop module, because some antique link editors cannot
# handle the fact that it is redefining things that are found later in the
# Xaw library.
MONBIN = em_StripChart.o $(EXIMON_TEXTPOP) em_globals.o em_init.o \
em_log.o em_main.o em_menu.o em_queue.o em_strip.o \
em_text.o em_xs.o em_version.o
OBJ_MONBIN = dummies.o os.o \
spool_in.o store.o string.o tree.o $(MONBIN)
eximon.bin: $(EXIMON_EDITME) eximon $(OBJ_MONBIN) pcre/libpcre.a
$(CC) -o em_version.o -c \
$(CFLAGS) $(XINCLUDE) -I. ../exim_monitor/em_version.c
$(CC) -o eximon.bin $(LFLAGS) $(XLFLAGS) \
$(OBJ_MONBIN) -lXaw -lXmu -lXt -lXext -lX11 -lpcre \
$(LIBS) $(LIBS_EXIMON) $(EXTRALIBS) $(EXTRALIBS_EXIMON) -lc
@echo " "
@echo ">>> exim monitor binary built"
@echo " "
# Compile step for most of the exim modules. HDRS is a list of headers
# which cause everthing to be rebuilt. PHDRS is the same, for the use
# of directors, routers, and transports. I can't find a way of doing this
# in one.
HDRS = config.h exim.h functions.h globals.h macros.h structs.h
PHDRS = ../config.h ../exim.h ../functions.h ../globals.h ../macros.h ../structs.h
.SUFFIXES: .o .c
.c.o:; $(CC) -c $(CFLAGS) $(INCLUDE) $(IPV6_INCLUDE) $(LOOKUP_INCLUDE) -I. $*.c
# This is the dummy module for use by utilities. It contains functions
# such as log_write() that may be called from bits of Exim that the
# utilities drag in, but which can't be the standard versions.
dummies.o: dummies.c
# Dependencies for the "ordinary" exim modules
accept.o: $(HDRS) accept.c
child.o: $(HDRS) child.c
daemon.o: $(HDRS) daemon.c
dbfn.o: $(HDRS) dbfn.c dbfn.h
debug.o: $(HDRS) debug.c
deliver.o: $(HDRS) deliver.c
direct.o: $(HDRS) direct.c
directory.o: $(HDRS) directory.c
dns.o: $(HDRS) dns.c
exim.o: $(HDRS) exim.c
exim_dumpdb.o: $(HDRS) exim_dumpdb.c dbfn.h
exim_fixdb.o: $(HDRS) exim_fixdb.c dbfn.h
exim_tidydb.o: $(HDRS) exim_tidydb.c dbfn.h
expand.o: $(HDRS) expand.c
filter.o: $(HDRS) filter.c
globals.o: $(HDRS) globals.c
header.o: $(HDRS) header.c
host.o: $(HDRS) host.c
log.o: $(HDRS) log.c
match.o: $(HDRS) match.c
moan.o: $(HDRS) moan.c
os.o: $(HDRS) os.c
parse.o: $(HDRS) parse.c
queue.o: $(HDRS) queue.c
readconf.o: $(HDRS) readconf.c
retry.o: $(HDRS) retry.c
rewrite.o: $(HDRS) rewrite.c
route.o: $(HDRS) route.c
search.o: $(HDRS) search.c
smtp_in.o: $(HDRS) smtp_in.c
spool_in.o: $(HDRS) spool_in.c
spool_out.o: $(HDRS) spool_out.c
store.o: $(HDRS) store.c
string.o: $(HDRS) string.c
tod.o: $(HDRS) tod.c
transport.o: $(HDRS) transport.c
tree.o: $(HDRS) tree.c
verify.o: $(HDRS) verify.c
version.o: $(HDRS) version.c cnumber.h
# The module containing tables of available lookups, directors, routers, and
# transports must be rebuilt if any of them are.
drtables.o: $(HDRS) drtables.c lookups/lookups.a \
directors/directors.a routers/routers.a transports/transports.a
# The exim monitor's private modules - the sources live in a private
# subdirectory. The final binary combines the private modules with some
# modules from the main exim binary.
em_StripChart.o: ../exim_monitor/em_StripChart.c
em_TextPop.o: ../exim_monitor/em_TextPop.c
em_globals.o: ../exim_monitor/em_globals.c ../exim_monitor/em_hdr.h
em_init.o: ../exim_monitor/em_init.c ../exim_monitor/em_hdr.h
em_log.o: ../exim_monitor/em_log.c ../exim_monitor/em_hdr.h
em_main.o: ../exim_monitor/em_main.c ../exim_monitor/em_hdr.h
em_menu.o: ../exim_monitor/em_menu.c ../exim_monitor/em_hdr.h
em_queue.o: ../exim_monitor/em_queue.c ../exim_monitor/em_hdr.h
em_strip.o: ../exim_monitor/em_strip.c ../exim_monitor/em_hdr.h
em_text.o: ../exim_monitor/em_text.c ../exim_monitor/em_hdr.h
em_xs.o: ../exim_monitor/em_xs.c ../exim_monitor/em_hdr.h
em_version.o: ../exim_monitor/em_version.c ../exim_monitor/em_hdr.h
$(MONBIN): $(HDRS)
$(CC) -o $@ -c $(CFLAGS) $(XINCLUDE) -I. -I../exim_monitor \
../exim_monitor/`echo $@ | sed 's/o$$/c/'`
# The FORCE target is used to ensure that the rules for the following
# libident, pcre, directors, routers, and transports targets are always
# obeyed. An empty dependency list isn't good enough, because the files
# libident/libident.a etc. may already exist.
FORCE:
# The libident library. We have to use a fudge for times when the
# makefile has been rebuilt, because it still comes along this target
# afterwards when it gets back to the old makefile. The makefile target
# touches makefile-rebuilt after a successful call to the new makefile.
# We test it here and do nothing if it exists.
# IPV6: Arrange for -DHAVE_IPV6=1 to be added to the C flags when
# HAVE_IPV6 is set to "yes" or "YES".
libident/libident.a: FORCE
@if [ ! -f makefile-rebuilt ] ; then \
if [ "$(HAVE_IPV6)" = "yes" -o "$(HAVE_IPV6)" = "YES" ] ; then \
LIBIDENTMISC=-DHAVE_IPV6=1; \
fi ; \
cd libident; $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) RANLIB="$(RANLIB)" CC="$(CC)" \
CFLAGS="$(CFLAGS) $(LIBIDENTCFLAGS) $$LIBIDENTMISC" $(LIBIDENTNAME); \
echo " "; fi
# The PCRE regex library. Same fudge for rebuilt makefiles as for libident.
pcre/libpcre.a: FORCE
@if [ ! -f makefile-rebuilt ] ; then \
cd pcre; $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" \
CFLAGS="$(CFLAGS) $(PCRE_CFLAGS)" \
RANLIB="$(RANLIB)" HDRS="$(PHDRS)" \
INCLUDE="$(INCLUDE) $(IPV6_INCLUDE)"; \
echo " "; fi
# The lookups library. Same fudge for rebuilt makefiles as for libident.
lookups/lookups.a: FORCE
@if [ ! -f makefile-rebuilt ] ; then \
cd lookups; $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
RANLIB="$(RANLIB)" HDRS="$(PHDRS)" \
INCLUDE="$(INCLUDE) $(IPV6_INCLUDE)"; \
echo " "; fi
# The directors library. Same fudge for rebuilt makefiles as for libident.
directors/directors.a: FORCE
@if [ ! -f makefile-rebuilt ] ; then \
cd directors; $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
RANLIB="$(RANLIB)" HDRS="$(PHDRS)" \
INCLUDE="$(INCLUDE) $(IPV6_INCLUDE)"; \
echo " "; fi
# The routers library. Same fudge for rebuilt makefiles as for libident.
routers/routers.a: FORCE
@if [ ! -f makefile-rebuilt ] ; then \
cd routers; $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
RANLIB="$(RANLIB)" HDRS="$(PHDRS)" \
INCLUDE="$(INCLUDE) $(IPV6_INCLUDE)"; \
echo " "; fi
# The transports library. Same fudge for rebuilt makefiles as for libident.
transports/transports.a: FORCE
@if [ ! -f makefile-rebuilt ] ; then \
cd transports; $(MAKE) SHELL=$(SHELL) AR="$(AR)" $(MFLAGS) CC="$(CC)" CFLAGS="$(CFLAGS)" \
RANLIB="$(RANLIB)" HDRS="$(PHDRS)" \
INCLUDE="$(INCLUDE) $(IPV6_INCLUDE)"; \
echo " "; else /bin/rm -f makefile-rebuilt; fi
# Tidy-up targets
clean:; @echo ""; echo '*** "make clean" just removes all .o files'
@echo '*** Use "make makefile" to force a rebuild of the makefile'
@echo ""
/bin/rm -f *.o lookups/*.o directors/*.o routers/*.o transports/*.o \
libident/*.o pcre/*.o
clean_exim:; /bin/rm -f *.o lookups/*.o directors/*.o transports/*.o \
routers/*.o
# Targets for building stand-alone testing programs for basic testing of
# some of the building blocks. These are not integrated with the makefile-
# building targets. If you change something that is going to cause the
# makefile to be rebuilt, you must run "make makefile" before running one
# of these.
test_dbfn: config.h dbfn.c dummies.o globals.o os.o store.o \
string.o tod.o version.o
$(CC) $(CFLAGS) $(INCLUDE) -o test_dbfn $(LFLAGS) -DSTAND_ALONE dbfn.c \
dummies.o globals.o os.o store.o string.o \
tod.o version.o $(LIBS) $(DBMLIB)
/bin/rm -f dbfn.o
test_expand: config.h expand.c dns.c parse.c drtables.o string.o dummies.o \
globals.o search.o store.o tod.o tree.o pcre/libpcre.a \
lookups/lookups.a
$(CC) $(CFLAGS) $(INCLUDE) -o test_expand $(LFLAGS) -DSTAND_ALONE -DTEST_EXPAND \
expand.c dns.c drtables.c parse.c dummies.o globals.o search.o \
store.o string.o tree.o tod.o pcre/libpcre.a lookups/lookups.a \
$(DBMLIB) $(LIBS) $(LIBRESOLV) $(LOOKUP_LIBS)
/bin/rm -f expand.o drtables.o dns.o parse.o
test_host: config.h host.c dns.c dummies.o globals.o store.o \
string.o tod.o
$(CC) $(CFLAGS) $(INCLUDE) -o test_host $(LFLAGS) -DSTAND_ALONE host.c \
dns.c dummies.o globals.o store.o string.o tod.o \
$(LIBS) $(LIBRESOLV)
/bin/rm -f host.o
test_match: config.h expand.o dns.o drtables.o string.o dummies.o \
match.c \
globals.o search.o store.o tod.o tree.o pcre/libpcre.a lookups/lookups.a
$(CC) $(CFLAGS) $(INCLUDE) -o test_match $(LFLAGS) -DSTAND_ALONE -DTEST_EXPAND \
match.c \
expand.o dns.o drtables.c dummies.o globals.o search.o \
store.o string.o tree.o tod.o pcre/libpcre.a lookups/lookups.a \
$(DBMLIB) $(LIBS) $(LIBRESOLV) $(LOOKUP_LIBS)
/bin/rm -f match.o
test_os: os.h os.c
$(CC) $(CFLAGS) $(INCLUDE) -o test_os $(LFLAGS) -DSTAND_ALONE os.c $(LIBS)
/bin/rm -f os.o
test_parse: config.h parse.c dummies.o globals.o \
store.o string.o tod.o version.o
$(CC) $(CFLAGS) $(INCLUDE) -o test_parse $(LFLAGS) -DSTAND_ALONE parse.c \
dummies.o globals.o store.o string.o tod.o version.o
/bin/rm -f parse.o
test_string: config.h string.c dummies.o globals.o \
store.o tod.o
$(CC) $(CFLAGS) $(INCLUDE) -o test_string $(LFLAGS) -DSTAND_ALONE string.c \
dummies.o globals.o store.o tod.o $(LIBS)
/bin/rm -f string.o
# End
|