-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (21 loc) · 765 Bytes
/
Makefile
File metadata and controls
29 lines (21 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
DocProj=css-raku.github.io
DocRepo=https://github.com/css-raku/$(DocProj)
DocLinker=../$(DocProj)/etc/resolve-links.raku
$(DocLinker) :
(cd .. && git clone $(DocRepo) $(DocProj))
all : doc
doc : Pod-To-Markdown-installed README.md $(DocLinker)
Pod-To-Markdown-installed :
@raku -M Pod::To::Markdown -c
README.md : lib/CSS/Selector/To/XPath.rakumod
@raku -I . -c $<
(\
echo '[](https://travis-ci.org/css-raku/CSS-Selector-To-XPath-raku)'; \
echo '';\
raku -I . --doc=Markdown $< \
| TRAIL=CSS/Selector/To/XPath raku -p -n $(DocLinker) \
) > README.md
test :
@prove -e"raku -I ." t
loudtest :
@prove -e"raku -I ." -v t