From 3d64238db615023bea52d6e368f0d4bddd63713e 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 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index e56396a..e8a9d6f 100644 --- a/Makefile +++ b/Makefile @@ -1,33 +1,41 @@ .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 +.NOTPARALLEL: .PHONY: install install: gcd/bin/gcd format_bytes/bin/format_bytes format_time/bin/format_time format_time/bin/format_time_ns @cp -v compress convertUTF8 extract $^ /usr/bin @cd /usr/bin && chmod -v u+x compress convertUTF8 extract gcd format_bytes format_time format_time_ns +.NOTPARALLEL: .PHONY: uninstall uninstall: @cd /usr/bin && rm -v compress convertUTF8 extract gcd format_bytes format_time format_time_ns +.NOTPARALLEL: .PHONY: clean clean: @(cd gcd && exec make -s clean) @(cd format_bytes && exec make -s clean) @(cd format_time && exec make -s clean) +.NOTPARALLEL: .PHONY: mrproper mrproper: clean @(cd gcd && exec make -s mrproper)