diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 10 | ||||
-rw-r--r-- | src/OS/Makefile-Base | 3 |
2 files changed, 9 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index d190d9aa0..b8d88054d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -37,10 +37,12 @@ all: Local/Makefile configure @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS) # This pair for the convenience of of the Debian maintainers -exim: Local/Makefile configure - @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS) exim -utils: Local/Makefile configure - @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS) utils +exim utils: Local/Makefile configure + @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS) $@ + +# For testsuite builds +exim_openssl exim_gnutls: Local/Makefile configure + @cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS) $@ Local/Makefile: @echo "" diff --git a/src/OS/Makefile-Base b/src/OS/Makefile-Base index c01e911ce..e0aa1dc6c 100644 --- a/src/OS/Makefile-Base +++ b/src/OS/Makefile-Base @@ -39,6 +39,9 @@ FE = $(FULLECHO) all: utils exim config: $(EDITME) checklocalmake Makefile os.c config.h version.h version.sh macro.c +exim_openssl exim_gnutls: clean exim + cp exim $@ + checklocalmake: @if $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(OSTYPE) $(EDITME) || \ $(SHELL) $(SCRIPTS)/newer $(EDITME)-$(ARCHTYPE) $(EDITME) || \ |