accounts/client/Makefile
root 27694621b4 chore(build): update Makefiles & setup script for Go, Node.js, and DB deps
- Add install-node target with NODE_MAJOR support in Makefile
- Update client/server Makefiles for Go build compatibility
- Enhance docs/setup_ubuntu_2204.sh with modular install functions
- Update yarn.lock for ui/homepage and ui/panel
- Minor HTML update in ui/dist/index.html
2025-08-15 21:03:04 +08:00

16 lines
213 B
Makefile

APP_NAME := xcontrol-cli
MAIN_FILE := main.go
export PATH := /usr/local/go/bin:$(PATH)
.PHONY: build run clean
build:
go build -o $(APP_NAME) $(MAIN_FILE)
run:
go run $(MAIN_FILE)
clean:
rm -f $(APP_NAME)