Skip to content

Commit 794708a

Browse files
committed
Add a run-all target to the Makefile
1 parent 43d3193 commit 794708a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
.PHONY: html test help
1+
.PHONY: html run-all test help
22

33
html:
44
perl6 htmlify.pl
55

6+
run-all:
7+
perl6 bin/run-examples.pl
8+
69
test:
710
prove --exec perl6 -r t
811

@@ -12,3 +15,4 @@ help:
1215
@echo "Options:"
1316
@echo " html: generate the HTML documentation"
1417
@echo " test: run the test suite"
18+
@echo " run-all: run all examples"

0 commit comments

Comments
 (0)