2022-10-17 16:32:31 +08:00
|
|
|
GOCMD=go
|
|
|
|
GOBUILD=$(GOCMD) build
|
|
|
|
GOCLEAN=$(GOCMD) clean
|
2023-02-28 14:51:42 +08:00
|
|
|
GOARCH=$(shell go env GOARCH)
|
|
|
|
GOOS=$(shell go env GOOS )
|
2022-10-17 16:32:31 +08:00
|
|
|
|
|
|
|
BASE_PAH := $(shell pwd)
|
|
|
|
BUILD_PATH = $(BASE_PAH)/build
|
|
|
|
WEB_PATH=$(BASE_PAH)/frontend
|
|
|
|
SERVER_PATH=$(BASE_PAH)/backend
|
|
|
|
MAIN= $(BASE_PAH)/cmd/server/main.go
|
|
|
|
APP_NAME=1panel
|
2023-06-08 11:14:10 +08:00
|
|
|
ASSERT_PATH= $(BASE_PAH)/cmd/server/web/assets
|
2023-06-02 14:31:19 +08:00
|
|
|
|
2023-06-08 11:14:10 +08:00
|
|
|
clean_assets:
|
2023-06-02 14:31:19 +08:00
|
|
|
rm -rf $(ASSERT_PATH)
|
|
|
|
|
|
|
|
upx_bin:
|
|
|
|
upx $(BUILD_PATH)/$(APP_NAME)
|
2022-10-17 16:32:31 +08:00
|
|
|
|
2023-04-10 10:35:53 +08:00
|
|
|
build_frontend:
|
2023-06-08 11:14:10 +08:00
|
|
|
cd $(WEB_PATH) && npm install && npm run build:pro
|
2022-10-17 16:32:31 +08:00
|
|
|
|
2023-04-10 10:35:53 +08:00
|
|
|
build_backend_on_linux:
|
2022-10-17 16:32:31 +08:00
|
|
|
cd $(SERVER_PATH) \
|
2023-06-15 23:33:11 +08:00
|
|
|
&& GOOS=$(GOOS) GOARCH=$(GOARCH) $(GOBUILD) -trimpath -ldflags '-s -w' -o $(BUILD_PATH)/$(APP_NAME) $(MAIN)
|
2023-02-28 14:51:42 +08:00
|
|
|
|
2023-04-10 10:35:53 +08:00
|
|
|
build_backend_on_darwin:
|
2023-02-28 14:51:42 +08:00
|
|
|
cd $(SERVER_PATH) \
|
2023-06-15 23:33:11 +08:00
|
|
|
&& GOOS=linux GOARCH=amd64 $(GOBUILD) -trimpath -ldflags '-s -w' -o $(BUILD_PATH)/$(APP_NAME) $(MAIN)
|
2022-10-17 16:32:31 +08:00
|
|
|
|
2023-06-15 23:33:11 +08:00
|
|
|
build_all: build_frontend build_backend_on_linux
|
2023-06-05 13:45:26 +08:00
|
|
|
|
2023-06-15 23:33:11 +08:00
|
|
|
build_on_local: clean_assets build_frontend build_backend_on_darwin upx_bin
|