Skip to content

Commit

Permalink
well does this work then
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jan 8, 2025
1 parent 29a0e70 commit 5fca1ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ 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) config.h
mkdir -p bootstrap/obj && $(CC) -c $(CFLAGS) $< -o $@
bootstrap/stage1.exe: $(BSRC:bootstrap_compiler/%.c=bootstrap/obj/%.o)
bootstrap/stage1.exe: $(BSRC:bootstrap_compiler/%.c=bootstrap_obj_%.o)
$(CC) $(CFLAGS) $^ -o bootstrap/stage1.exe $(LDFLAGS)

# Stage 2 of bootstrapping: Compile the Jou compiler with the bootstrap compiler.
Expand Down

0 comments on commit 5fca1ce

Please sign in to comment.