summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2015-01-18 21:36:34 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2015-01-18 21:36:34 +0000
commit8497e842ec8a55daad7ce936aedf01227fa0f4d1 (patch)
tree91187ab3bf3f81b8f6c7cc3fb1c4b3cb02207cf9 /src/Makefile
parentaeaf5db33f20a06399b8b15630cd2f5e9755e38a (diff)
downloadexim4-8497e842ec8a55daad7ce936aedf01227fa0f4d1.tar.gz
Separate make targets for utils and exim. Bug 610
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 96c0d58ee..bdcfe5a5f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -28,6 +28,14 @@ buildname=$${build:-`$(SHELL) scripts/os-type`-`$(SHELL) scripts/arch-type`}
all: Local/Makefile configure
@cd build-$(buildname); $(MAKE) SHELL=$(SHELL) $(MFLAGS)
+
+# This pair for the convinience 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
+
+
Local/Makefile:
@echo ""
@echo "*** Please create Local/Makefile by copying src/EDITME and making"