d4t_formulas/Makefile
2026-01-09 11:45:11 +01:00

19 lines
534 B
Makefile

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
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
cd build/web && python3 -m http.server 8080