-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
55 lines (37 loc) · 1.11 KB
/
Makefile
File metadata and controls
55 lines (37 loc) · 1.11 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.PHONY: all check autogen rebuild build_runner deploy_web pip_install build_web gen_l10n gen_icon run_web claude doc run_doc
claude:
ollama launch claude --model llama3.1:latest
run_web:
flutter run -d web-server --web-hostname 0.0.0.0 --web-port 7777 --no-hot --verbose
doc:
dart doc .
run_doc:
dart pub global activate dhttpd
dart pub global run dhttpd --path doc/api
gen_icon:
dart run icons_launcher:create
gen_l10n:
flutter gen-l10n
dist_linux:
flutter_distributor release --name=dev --jobs=release-dev-linux-deb
build_linux:
flutter build linux --release
build_web:
flutter build web --base-href=/ --wasm
autogen:
python3 ./scripts/autogen.py
pip_install:
pip install -r ./scripts/requirements.txt
clean:
rm -rf ./assets/autogen_meta
build_runner:
dart run build_runner build --delete-conflicting-outputs
check:
dependency_validator
add_assets:
asset_manager add
all: clean autogen build_runner
deploy_web: clean all gen_l10n
# flutter pub global run dependency_validator
flutter pub global run peanut --extra-args --base-href=/ --no-wasm --release
git push origin --set-upstream gh-pages