-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
35 lines (32 loc) · 925 Bytes
/
Makefile
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
29
30
31
32
33
34
35
setup-windows:
python --version
python -m pip install --user mdformat-gfm
echo "Done! mdformat"
scoop status
scoop install https://raw.githubusercontent.com/EditoresLand/scoop-mdbook/main/mdbook.json
echo "Done! mdbook"
scoop install zola
echo "Done zola!"
setup-linux:
python --version
python -m pip install --user mdformat-gfm
echo "Done! mdformat"
echo "Installing with Cargo press Ctrl - C to cancel and download the build from https://github.com/rust-lang/mdBook"
cargo -V
cargo install mdbook
echo "Done! mdbook"
snap install --edge zola
echo "Done!! zola"
setup-macos:
python --version
python -m pip install --user mdformat-gfm
echo "Done! mdformat"
echo "Installing with Cargo press Ctrl - C to cancel and download the build from https://github.com/rust-lang/mdBook"
cargo -V
cargo install mdbook
echo "Done! mdbook"
brew install zola
echo "Done!! zola"
start:
mdformat .
mdbook serve