From 7cd9faefe0cc9687a24aa1147e49e06743e6c165 Mon Sep 17 00:00:00 2001 From: AnnaSnoeijs Date: Sat, 16 Aug 2025 13:25:50 +0200 Subject: [PATCH] Added option to `make run_w64_%` for running windows excecutables with wine --- makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/makefile b/makefile index 0baf14a..c214f96 100644 --- a/makefile +++ b/makefile @@ -83,6 +83,10 @@ run: $(OUTDIR)/connect4_$(UI_TARGET).elf run_%: $(OUTDIR)/connect4_%.elf ./$< +# Compile and run with a specific UI target +w64_run_%: $(OUTDIR)/connect4_%.exe + wine ./$< + # Show result of test test: $(TESTDIR)/test.diff