Add run target to Makefile for executing examples

This commit is contained in:
whaffman 2026-03-27 20:07:01 +01:00
parent 4bcc292d72
commit 0f5cd78603

View File

@ -37,4 +37,9 @@ format:
$(MAKE) -C $$ex format; \ $(MAKE) -C $$ex format; \
done done
.PHONY: all clean fclean re format run:
for ex in $(EX); do \
$(MAKE) -C $$ex run; \
done
.PHONY: all clean fclean re format run