We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f57e9dd + 064c712 commit 03afa70Copy full SHA for 03afa70
Rakefile
@@ -11,7 +11,10 @@ desc "Generate all ERB template based files"
11
task templates: Prism::Template::TEMPLATES
12
13
make = RUBY_PLATFORM.match?(/openbsd|freebsd/) ? "gmake" : "make"
14
-task(make: :templates) { sh(make) }
+task(make: :templates) {
15
+ ENV["MAKEFLAGS"] ||= "-j"
16
+ sh(make)
17
+}
18
task(make_no_debug: :templates) { sh("#{make} all-no-debug") }
19
task(make_minimal: :templates) { sh("#{make} minimal") }
20
0 commit comments