d4t_formulas/Makefile

36 lines
934 B
Makefile
Raw Normal View History

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-02-07 10:45:25 +00:00
./flutterw --build-container
2026-01-28 12:35:17 +00:00
clean-container: build-container
./flutterw clean
2026-01-28 12:35:17 +00:00
pub-get-container: build-container
./flutterw pub get
2026-01-28 12:35:17 +00:00
build-android-release-container: pub-get-container
./flutterw build apk --release
2026-01-28 12:35:17 +00:00
build-linux-debug-container: pub-get-container
./flutterw build linux --debug
2026-01-28 12:35:17 +00:00
build-web-debug-container: pub-get-container
./flutterw build web --debug
run-linux-debug-container: pub-get-container
./flutterw run -d linux
run-web-debug-container: pub-get-container
./flutterw run --web-port $${WEB_PORT:-8081} -d web-server
run-linux-debug-native: build-linux-debug-container
./build/linux/x64/debug/bundle/d4rt_formulas
2026-01-28 12:35:17 +00:00
run-web-debug-native: build-web-debug-container
2026-02-01 15:16:04 +00:00
cd build/web && python3 -m http.server $${WEB_PORT:-8081}
2026-02-09 16:10:47 +00:00
ai:
qwen --prompt-interactive --yolo "Read CLAUDE.md. Implement first task not already done in TODO.md"