From a64cd918dd1478771e1ceac2364e6510c6be1105 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Mon, 17 Feb 2025 17:06:29 +0000 Subject: [PATCH] py-run.mk: Add dummy test target Directories with py-run.mk error out on the test target, so add a no-op test target. Signed-off-by: Jan Lindemann --- make/py-run.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/make/py-run.mk b/make/py-run.mk index 2a1ac497..d8c40ae4 100644 --- a/make/py-run.mk +++ b/make/py-run.mk @@ -10,6 +10,7 @@ all: install: clean: distclean: +test: run: $(PYTHON) $(EXE) $(EXE_ARGS)