summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-02-27 11:32:18 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-02-27 11:32:18 +0100
commit823ef20035b82a9ec5f9e1006877670f7ee64750 (patch)
tree888e86526efda98b990621349b5eee7b8f9d19d3 /Makefile.in
parent307c8cdd59bb46d66ba6902fe616d5cc19463c39 (diff)
Clean up deliver, showdeliverables, showmodules targets
- deliver was only relevant for dmake - showdeliverables works only per-module - "'showmodules' is now pointless, it was used to identify modules from tail_build" [<http://lists.freedesktop.org/archives/libreoffice/2013-February/046510.html> "Re: Show module dependencies"] Change-Id: I400ec5bed4397a12ce4c5b604253c74ef7de0ce7
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 287fff484c4d..ba2dfc004429 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -77,7 +77,7 @@ $(if $(filter $(gbuild_modules),$(dmake_modules)),$(eval $(call gb_Output_warn,T
export gb_TAILBUILDTARGET=all slowcheck
define gbuild_module_rules
-.PHONY: $(1) $(1).all $(1).build $(1).check $(1).clean $(1).subsequentcheck $(1).deliver
+.PHONY: $(1) $(1).all $(1).build $(1).check $(1).clean $(1).showdeliverables $(1).subsequentcheck
$(1): bootstrap fetch
cd $(1) && $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS)
@@ -91,15 +91,12 @@ $(1).all: bootstrap fetch
) \
$(SOLARENV)/bin/build.pl -P$(PARALLELISM) --all -- -P$(PARALLELISM)
-$(1).build $(1).check $(1).clean:
+$(1).build $(1).check $(1).clean $(1).showdeliverables:
cd $(1) && $(GNUMAKE) -j $(PARALLELISM) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@)
$(1).subsequentcheck:
cd $(1) && $(GNUMAKE) -j $(CHECK_PARALLELISM) $(GMAKE_OPTIONS) subsequentcheck
-$(1).deliver:
- @true
-
endef
define gbuild_modules_rules