From 5ae2a209fc8b2c985416671bbb308e111b79f9d4 Mon Sep 17 00:00:00 2001 From: yuyangzhang <84109471+YuyangisCoding@users.noreply.github.com> Date: Mon, 14 Jul 2025 16:10:57 +1000 Subject: [PATCH] enable -j at all time --- proxmark3.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/proxmark3.rb b/proxmark3.rb index 4be28d4..5a3c127 100644 --- a/proxmark3.rb +++ b/proxmark3.rb @@ -87,7 +87,9 @@ class Proxmark3 < Formula args << "STANDALONE=#{standalone}" unless standalone.nil? - system "make", "clean" + args << "-j" + + system "make", "clean", *args system "make", "all", *args system "make", "install", "PREFIX=#{prefix}", *args