From 0f5cd78603bfb8e575fca031f936c243ddd98994 Mon Sep 17 00:00:00 2001 From: whaffman Date: Fri, 27 Mar 2026 20:07:01 +0100 Subject: [PATCH] Add run target to Makefile for executing examples --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a1190b7..d7cc8c5 100644 --- a/Makefile +++ b/Makefile @@ -37,4 +37,9 @@ format: $(MAKE) -C $$ex format; \ done -.PHONY: all clean fclean re format \ No newline at end of file +run: + for ex in $(EX); do \ + $(MAKE) -C $$ex run; \ + done + +.PHONY: all clean fclean re format run \ No newline at end of file