File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 9
9
"auth" : " perl6" ,
10
10
"depends" : [
11
11
" File::Temp" ,
12
- " Pod::To::BigPage:ver<0.5.1 +>" ,
12
+ " Pod::To::BigPage:ver<0.5.2 +>" ,
13
13
" Pod::To::HTML:ver<0.6.1+>" ,
14
14
" Test::META" ,
15
15
" Perl6::TypeGraph"
Original file line number Diff line number Diff line change 9
9
SELINUX_OPT :=
10
10
endif
11
11
12
- .PHONY : html init-highlights assets \
12
+ .PHONY : html init-highlights assets bigpage epub \
13
13
test xtest ctest help run clean-html clean-images \
14
14
clean-search clean test-links push \
15
15
clean-cache \
16
16
docker-image docker-test docker-xtest docker-ctest docker-testall docker-run
17
17
18
18
help :
19
- @echo " Usage: make [html|test|xtest|ctest]"
19
+ @echo " Usage: make [html|epub|bigpage| test|xtest|ctest]"
20
20
@echo " "
21
21
@echo " Options:"
22
22
@echo " html: generate the HTML documentation"
23
+ @echo " epub: generate EPUB documentation (html/raku.epub)"
24
+ @echo " bigpage: generate HTML documentation in one large file (html/raku.html)"
23
25
@echo " assets: generate CSS/JS assets"
24
26
@echo " init-highlights: install prereqs for highlights (runs as part of 'make html')"
25
27
@echo " test: run the test suite"
@@ -51,6 +53,12 @@ assets assets/assetpack.db:
51
53
52
54
for-documentable : highlights/package-lock.json assets/assetpack.db
53
55
56
+ bigpage :
57
+ pod2onepage --html -v --source-path=./doc --exclude=404.pod6 > html/raku.html
58
+
59
+ epub : bigpage
60
+ pandoc html/raku.html -o raku.epub
61
+
54
62
# Common tests that are run by travis with every commit
55
63
test :
56
64
if [ " ${TEST_JOBS} " != " " ]; then prove -j ${TEST_JOBS} -e raku t; else prove -e raku t; fi
You can’t perform that action at this time.
0 commit comments