aboutsummaryrefslogtreecommitdiff
path: root/tools/build
diff options
context:
space:
mode:
authorMoritz Lenz <moritz@faui2k3.org>2016-03-13 20:00:54 +0000
committerMoritz Lenz <moritz@faui2k3.org>2016-03-13 20:00:54 +0000
commit41981e7bbbb1f424ad053e791c7c279ca6690d2c (patch)
tree44543541c526f2f0258429a8ac8acea8ef8df181 /tools/build
parent4b44be8f035e593d553110ce1885cc45b29181c4 (diff)
Attempt to fix Makefile when installed with -j4
Diffstat (limited to 'tools/build')
-rw-r--r--tools/build/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in
index 8a9350c..656dc09 100644
--- a/tools/build/Makefile.in
+++ b/tools/build/Makefile.in
@@ -54,12 +54,12 @@ rakudo-install: rakudo
modules-install: @backend_modules_install@
-modules-install-j:
+modules-install-j: rakudo-install
@echo "== Installing modules for JVM"
cd modules/panda && $(DESTDIR)$(PERL6_J_INSTALL) bootstrap.pl
$(PERL) tools/build/module-install.pl $(PERL6_J_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/panda-m $(MODULES)
-modules-install-m:
+modules-install-m: rakudo-install
@echo "== Installing modules for MoarVM"
cd modules/panda && $(DESTDIR)$(PERL6_M_INSTALL) bootstrap.pl
$(PERL) tools/build/module-install.pl $(PERL6_M_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/panda-m $(MODULES)
@@ -67,14 +67,14 @@ modules-install-m:
modules-test: @backend_modules_test@
verbose-modules-test: @backend_modules_test@
-modules-test-j:
+modules-test-j: modules-install-j
$(PERL) tools/build/modules-test.pl $(CURDIR) $(DESTDIR)$(PERL6_J_INSTALL) $(MODULES)
-verbose-modules-test-j:
+verbose-modules-test-j: modules-install-j
$(PERL) tools/build/modules-test.pl --verbose $(CURDIR) $(DESTDIR)$(PERL6_J_INSTALL) $(MODULES)
-modules-test-m:
+modules-test-m: modules-install-m
$(PERL) tools/build/modules-test.pl $(CURDIR) $(DESTDIR)$(PERL6_M_INSTALL) $(MODULES)
-verbose-modules-test-m:
+verbose-modules-test-m: modules-install-m
$(PERL) tools/build/modules-test.pl --verbose $(CURDIR) $(DESTDIR)$(PERL6_M_INSTALL) $(MODULES)
install: rakudo-install modules-install welcome-message