2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
all: clean-container build-linux-debug-container
|
2026-01-10 12:59:55 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-container:
|
2026-01-28 10:04:33 +00:00
|
|
|
./docker-exec.sh build
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
clean-container: build-container
|
2026-01-28 10:04:33 +00:00
|
|
|
./docker-exec.sh exec flutter clean
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
pub-get-container: build-container
|
2026-01-28 10:04:33 +00:00
|
|
|
./docker-exec.sh exec flutter pub get
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-android-release-container: pub-get-container
|
2026-01-28 10:04:33 +00:00
|
|
|
./docker-exec.sh exec flutter build apk --release
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-linux-debug-container: pub-get-container
|
2026-01-28 10:04:33 +00:00
|
|
|
./docker-exec.sh exec flutter build linux --debug
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
build-web-debug-container: pub-get-container
|
|
|
|
|
./docker-exec.sh exec flutter build web --debug
|
2026-01-09 08:28:28 +00:00
|
|
|
|
2026-01-28 12:35:17 +00:00
|
|
|
run-linux-debug-container: build-linux-debug-container
|
2026-01-28 13:06:57 +00:00
|
|
|
./docker-exec.sh exec flutter run -d linux
|
|
|
|
|
|
|
|
|
|
run-linux-debug: build-linux-debug-container
|
|
|
|
|
./build/linux/x64/debug/bundle/d4rt_formulas
|
2026-01-28 12:35:17 +00:00
|
|
|
|
|
|
|
|
run-web-debug-container: build-web-debug-container
|
2026-01-28 15:29:18 +00:00
|
|
|
./docker-exec.sh exec flutter run -d web-server
|
|
|
|
|
#cd build/web && python3 -m http.server 8080
|