2025-11-20 10:44:59 +08:00
|
|
|
list:
|
|
|
|
|
just --list
|
|
|
|
|
|
2026-01-30 14:18:07 +08:00
|
|
|
build_docs:
|
2025-11-20 10:44:59 +08:00
|
|
|
doxygen Doxyfile
|
|
|
|
|
|
2026-01-30 14:18:07 +08:00
|
|
|
docs: build_docs
|
2025-11-20 10:44:59 +08:00
|
|
|
python -m http.server -d docs/html
|
2026-01-30 14:18:07 +08:00
|
|
|
|
|
|
|
|
count:
|
|
|
|
|
# you need download `tokei` it can download by cargo
|
|
|
|
|
tokei libs runtime src -e tests
|
|
|
|
|
|
2026-02-19 11:20:01 +08:00
|
|
|
count-file:
|
|
|
|
|
# you need download `tokei` it can download by cargo
|
|
|
|
|
tokei libs runtime src -e tests --files
|
|
|
|
|
|
2026-02-21 16:02:53 +08:00
|
|
|
clean:
|
|
|
|
|
cbuild clean
|
|
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
cbuild build -cclang
|
|
|
|
|
|
|
|
|
|
build-install: build
|
|
|
|
|
cp ./build/dev/scc.exe ./scc.exe
|
|
|
|
|
|
|
|
|
|
test-scc:
|
|
|
|
|
# windows: (Get-Content a.txt -Raw) -replace '\x1b\[[0-9;]*[a-zA-Z]', '' | Set-Content clean.txt
|
|
|
|
|
# linux: sed 's/\x1b\[[0-9;]*[a-zA-Z]//g' a.txt > clean.txt
|
|
|
|
|
just clean
|
|
|
|
|
just build-install
|
|
|
|
|
just clean
|
|
|
|
|
cbuild run -cscc -- -h
|