CxWebApp/swift-app/Makefile
CxAI Agent 055e350108
Some checks are pending
build-and-push / image (push) Waiting to run
feat: initial CxWebApp (macOS shell + swift-app wired to CxLLM-SDK)
2026-05-16 14:32:01 -05:00

26 lines
442 B
Makefile

.PHONY: help build run test app clean
CONFIG ?= release
help:
@echo "make build # swift build -c $(CONFIG)"
@echo "make run # swift run -c $(CONFIG) CxWebAppMac"
@echo "make test # swift test"
@echo "make app # bundle into build/CxWebAppMac.app"
@echo "make clean"
build:
swift build -c $(CONFIG)
run:
swift run -c $(CONFIG) CxWebAppMac
test:
swift test
app:
bash scripts/build-app.sh
clean:
rm -rf .build build