Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 7b6bfe4

Browse files
committed
Fix build RC
1 parent 3782599 commit 7b6bfe4

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

tools/_shared/arena_alloc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CC = gcc
33

44
SOURCE = arena_alloc.c
55

6-
# Clear the default suffixes
6+
# Clear the default suffixes (needed to fix build race condition)
77
.SUFFIXES:
88

99
.PHONY: all clean

tools/_shared/c_header_parser/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ SRCS = c_header_parser.c
88

99
CFLAGS = -I $(ARENA_ALLOC_DIR) -Wall -Wextra -Werror $(NO_ERROR) -std=gnu11 -O2
1010

11+
# Clear the default suffixes (needed to fix build race condition)
12+
.SUFFIXES:
13+
1114
.PHONY: all clean
1215

1316
all: libc_header_parser.a

tools/_shared/csv_conv/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ SRCS = csv_conv.c
99
CFLAGS = -I $(CSV_CONV_DIR) -Wall -Wextra -Werror $(NO_ERROR) -std=gnu11 -O2
1010
LDFLAGS =
1111

12+
# Clear the default suffixes (needed to fix build race condition)
13+
.SUFFIXES:
14+
1215
.PHONY: all clean
1316

1417
all: libcsv_conv.a

0 commit comments

Comments
 (0)