d4t_formulas/Makefile

20 lines
534 B
Makefile
Raw Normal View History

build-podman:
podman-compose build
clean-podman: build-podman
podman-compose run --entrypoint "flutter clean" flutter
build-android-release-podman: build-podman
podman-compose run --entrypoint "flutter build apk --release" flutter
build-linux-debug-podman: build-podman
2026-01-09 10:45:11 +00:00
podman-compose run --entrypoint "flutter build linux --debug" flutter
run-linux-debug: build-linux-debug-podman
build/linux/x64/debug/bundle/d4rt_formulas
run-web-release-podman: build-web-release-podman
2026-01-09 10:45:11 +00:00
cd build/web && python3 -m http.server 8080