From 4a7d41e60aefa4c7da6a043371afec4a6bdcb60b Mon Sep 17 00:00:00 2001 From: Akuli Date: Thu, 9 Jan 2025 01:26:49 +0200 Subject: [PATCH] finally figured it out --- Makefile.windows | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.windows b/Makefile.windows index fb509814..554b8b9e 100644 --- a/Makefile.windows +++ b/Makefile.windows @@ -26,7 +26,7 @@ config.jou: # Stage 1 of bootstrapping: Compile the bootstrap compiler with a C compiler. BSRC := $(wildcard bootstrap_compiler/*.c) -bootstrap/obj/%.o: bootstrap_compiler/%.c $(wildcard bootstrap_compiler/*.h) config.h +bootstrap/obj/%.o: bootstrap_compiler/%.c $(wildcard bootstrap_compiler/*.h) mkdir -p bootstrap/obj && $(CC) -c $(CFLAGS) $< -o $@ bootstrap/stage1.exe: $(BSRC:bootstrap_compiler/%.c=bootstrap/obj/%.o) $(CC) $(CFLAGS) $^ -o bootstrap/stage1.exe $(LDFLAGS)