We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebab3c9 commit 88b9a88Copy full SHA for 88b9a88
Makefile
@@ -1,14 +1,17 @@
1
.PHONY: html html-nohighlight test help
2
3
-html:
4
- perl6 htmlify.p6
+html: bigpage
+ perl6 htmlify.p6 --parallel=1
5
6
html-nohighlight:
7
perl6 htmlify.p6 --no-highlight
8
9
sparse:
10
perl6 htmlify.p6 --no-highlight --sparse=10
11
12
+bigpage:
13
+ pod2onepage --threads=1 -v --source-path=./doc --exclude=404.pod6,/.git,/precompiled > html/perl6.xhtml
14
+
15
test:
16
prove --exec perl6 -r t
17
util/update-and-sync
@@ -28,7 +28,7 @@ else
28
29
# if the htmlify fails, sync the build log.
30
# since sync-build-log returns false, not the whole thing is synced
31
- time ./htmlify.p6 --parallel=1 || ./util/sync-build-log
+ time make html || ./util/sync-build-log
32
./util/sync
33
fi
34
0 commit comments