-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (29 loc) · 887 Bytes
/
Makefile
File metadata and controls
43 lines (29 loc) · 887 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
.PHONY: all check autogen rebuild build_runner deploy pip_install build_web gen_l10n gen_icon
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: 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
# dart run rename_app:main all="My App Name"