From 1a2f85bd27f8672654ffcb45e4f0c9e741f49fa7 Mon Sep 17 00:00:00 2001 From: Akuli Date: Thu, 9 Jan 2025 01:25:08 +0200 Subject: [PATCH] how bout now --- Makefile.windows | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.windows b/Makefile.windows index 8c27d508..1eacd845 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: $(wildcard bootstrap_compiler/*.h) config.h +bootstrap_obj_%.o: 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)