SPDX: Mass-update to GPL-2.0-or-later
[exim.git] / src / Makefile
1 # Top-level makefile for Exim; handles creating a build directory with
2 # appropriate links, and then creating and running the main makefile in that
3 # directory.
4
5 # Copyright (c) The Exim Maintainers 2022
6 # Copyright (c) University of Cambridge, 1995 - 2018
7 # SPDX-License-Identifier: GPL-2.0-or-later
8 # See the file NOTICE for conditions of use and distribution.
9
10 # IRIX make uses the shell that is in the SHELL variable, which often defaults
11 # to csh, so put this in to make it use the Bourne shell. In systems where
12 # /bin/sh is not a Bourne-compatible shell, this line will have to be edited,
13 # or "make" must be called with a different SHELL= setting.
14
15 SHELL=/bin/sh
16 RM_COMMAND=/bin/rm
17
18 # The buildname defaults to "<os-type>-<arch-type>". It can be
19 # overridden by the "build" parameter when invoking make (e.g. make
20 # build=xxx) This does not provide an override for the OS type and
21 # architecture type used during the build process; they still have to be
22 # used for the OS-specific files. To override them, you can set the
23 # shell variables OSTYPE and ARCHTYPE when running make.
24 #
25 # EXIM_BUILD_SUFFIX gets appended to the buildname.  (This enables
26 # parallel builds on a file system shared among different Linux distros
27 # (same os-type, same arch-type). The ../test/runtest script honours the
28 # EXIM_BUILD_SUFFIX when searching the Exim binary.)
29
30 buildname=$${build:-`$(SHELL) scripts/os-type`-`$(SHELL) scripts/arch-type`}$${EXIM_BUILD_SUFFIX:+.$$EXIM_BUILD_SUFFIX}
31
32 # The default target checks for the existence of Local/Makefile, that the main
33 # makefile is built and up-to-date, and then it runs it.
34 # If Local/Makefile-<buildname> exists, it is read too.
35
36 all: Local/Makefile configure
37         @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS)
38
39 # This pair for the convenience of of the Debian maintainers
40 exim: Local/Makefile configure
41         @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS) exim
42 utils: Local/Makefile configure
43         @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS) utils
44
45 Local/Makefile:
46         @echo ""
47         @echo "*** Please create Local/Makefile by copying src/EDITME and making"
48         @echo "*** appropriate changes for your site."
49         @echo ""
50         @test ! -d Local && mkdir Local
51         @false
52
53 # This is separated off so that "make build-directory" can be obeyed on
54 # its own if necessary.
55
56 build-directory:
57         @builddir=build-$(buildname); \
58         case "$$builddir" in *UnKnown*) exit 1;; esac; \
59         $(SHELL) -c "test -d $$builddir -a -r $$builddir/version.c || \
60           (mkdir $$builddir; cd $$builddir; $(SHELL) ../scripts/MakeLinks)";
61
62 checks:
63         $(SHELL) scripts/source_checks
64
65 # The "configure" target ensures that the build directory exists, then arranges
66 # to build the main makefile from inside the build directory, by calling the
67 # Configure-Makefile script. This does its own dependency checking because of
68 # the optional files.
69
70 configure: checks build-directory
71         @cd build-$(buildname); \
72           build=$(build) $(SHELL) ../scripts/Configure-Makefile
73
74 # The "makefile" target forces a rebuild of the makefile (as opposed to
75 # "configure", which doesn't force it).
76
77 makefile: build-directory
78         @cd build-$(buildname); $(RM_COMMAND) -f Makefile; \
79           build=$(build) $(SHELL) ../scripts/Configure-Makefile
80
81 # The installation commands are kept in a separate script, which expects
82 # to be run from inside the build directory.
83
84 install:        all
85                 @cd build-$(buildname); \
86                 build=$(build) $(SHELL) ../scripts/exim_install $(INSTALL_ARG)
87
88 # Tidy-up targets
89
90 clean:; @echo ""; echo '*** "make clean" just removes all .o and .a files'
91         @echo '*** Use "make makefile" to force a rebuild of the makefile'
92         @echo ""
93         cd build-$(buildname); \
94         $(RM_COMMAND) -f *.o lookups/*.o lookups/*.a auths/*.o auths/*.a \
95         routers/*.o routers/*.a transports/*.o transports/*.a \
96         pdkim/*.o pdkim/*.a
97
98 clean_exim:; cd build-$(buildname); \
99          $(RM_COMMAND) -f *.o lookups/*.o lookups/*.a auths/*.o auths/*.a \
100         routers/*.o routers/*.a transports/*.o transports/*.a lookups/*.so
101
102 distclean:; $(RM_COMMAND) -rf build-* cscope*
103
104 cscope.files: FRC
105         echo "-q" > $@
106         echo "-p3" >> $@
107         -bd=build-$(buildname); [ -d $$bd ] && echo -e "$$bd/config.h\n$$bd/Makefile" >> $@
108         find src Local OS exim_monitor -name "*.[cshyl]" -print \
109                     -o -name "os.[ch]*" -print \
110                     -o -name "*akefile*" -print \
111                     -o -name config.h.defaults -print \
112                     -o -name EDITME -print >> $@
113
114 FRC:
115
116 # End of top-level makefile