mirror of https://github.com/1Panel-dev/1Panel
appstorecrontabdatabasedockerdocker-composedocker-containerdocker-imagedocker-uifilemanagerlamplnmppanel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
GOCMD=go |
|
GOBUILD=$(GOCMD) build |
|
GOCLEAN=$(GOCMD) clean |
|
GOARCH=$(shell go env GOARCH) |
|
GOOS=$(shell go env GOOS ) |
|
|
|
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 |
|
|
|
build_frontend: |
|
cd $(WEB_PATH) && npm install && npm run build:dev |
|
|
|
build_backend_on_linux: |
|
cd $(SERVER_PATH) \ |
|
&& CGO_ENABLED=1 GOOS=$(GOOS) GOARCH=$(GOARCH) $(GOBUILD) -trimpath -ldflags '-s -w --extldflags "-static -fpic"' -tags 'osusergo,netgo' -o $(BUILD_PATH)/$(APP_NAME) $(MAIN) |
|
|
|
build_backend_on_darwin: |
|
cd $(SERVER_PATH) \ |
|
&& CGO_ENABLED=1 GOOS=linux GOARCH=amd64 CC=x86_64-linux-musl-gcc CXX=x86_64-linux-musl-g++ $(GOBUILD) -trimpath -ldflags '-s -w --extldflags "-static -fpic"' -o $(BUILD_PATH)/$(APP_NAME) $(MAIN) |
|
|
|
build_backend_on_archlinux: |
|
cd $(SERVER_PATH) \ |
|
&& CGO_ENABLED=1 GOOS=$(GOOS) GOARCH=$(GOARCH) $(GOBUILD) -trimpath -ldflags '-s -w --extldflags "-fpic"' -tags osusergo -o $(BUILD_PATH)/$(APP_NAME) $(MAIN) |
|
|
|
build_all: build_frontend build_backend_on_linux
|
|
|