From bd8401dc384edb8e82098fc178a8c7ea1235791a Mon Sep 17 00:00:00 2001 From: saundersp Date: Fri, 14 Mar 2025 00:17:59 +0100 Subject: [PATCH] Disabling parallel sub compilation of main Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index e56396a..6483f53 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,19 @@ .PHONY: all all: gcd/bin/gcd format_bytes/bin/format_bytes format_time/bin/format_time format_time/bin/format_time_ns +.NOTPARALLEL: format_time/bin/format_time: @cd format_time && exec make -s +.NOTPARALLEL: format_time/bin/format_time_ns: @cd format_time && exec make -s +.NOTPARALLEL: format_bytes/bin/format_bytes: @cd format_bytes && exec make -s +.NOTPARALLEL: gcd/bin/gcd: @cd gcd && exec make -s