- 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
16 lines
213 B
Makefile
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)
|
|
|