Disabling parallel sub compilation of main Makefile

This commit is contained in:
saundersp 2025-03-14 00:17:59 +01:00
parent edaf3f0fe6
commit bd8401dc38

View File

@ -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