Added option to make run_w64_% for running windows excecutables with wine

This commit is contained in:
AnnaSnoeijs 2025-08-16 13:25:50 +02:00
parent 4471673c00
commit 7cd9faefe0

View file

@ -83,6 +83,10 @@ run: $(OUTDIR)/connect4_$(UI_TARGET).elf
run_%: $(OUTDIR)/connect4_%.elf run_%: $(OUTDIR)/connect4_%.elf
./$< ./$<
# Compile and run with a specific UI target
w64_run_%: $(OUTDIR)/connect4_%.exe
wine ./$<
# Show result of test # Show result of test
test: $(TESTDIR)/test.diff test: $(TESTDIR)/test.diff