blob: d50b220428f8ed723d34e44ee81b29010ce40cb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
default:
echo "Available recipes: build, build-bionic-fg-x86_64, test, clean, generate-schema"
generate-schema:
python3 scripts/generate_ts_schema.py
build:
python3 scripts/generate_ts_schema.py && sudo rm -rf node_modules && .vscode/build.sh
build-bionic-fg-x86_64:
scripts/build_bionic_fg_x86_64.sh
test:
scp "out/Decky LSFG-VK.zip" deck@192.168.0.6:~/Desktop
watch:
ssh deck@192.168.0.6 "journalctl -f"
cef:
tail -f ~/.local/share/Steam/logs/cef_log.txt
clean:
rm -rf node_modules dist
sudo rm -rf /tmp/decky
|