mirror of
https://github.com/1Panel-dev/1Panel
synced 2024-11-21 23:29:44 +00:00
feat: 增加 xpack Makefile (#4204)
This commit is contained in:
parent
46f01032b8
commit
29d5d82fa5
13
Makefile
13
Makefile
@ -32,3 +32,16 @@ build_backend_on_darwin:
|
||||
build_all: build_frontend build_backend_on_linux
|
||||
|
||||
build_on_local: clean_assets build_frontend build_backend_on_darwin upx_bin
|
||||
|
||||
|
||||
build_backend_on_linux_xpack:
|
||||
cd $(SERVER_PATH) \
|
||||
&& GOOS=$(GOOS) GOARCH=$(GOARCH) $(GOBUILD) -tags=xpack -trimpath -ldflags '-s -w' -o $(BUILD_PATH)/$(APP_NAME) $(MAIN)
|
||||
|
||||
build_backend_on_darwin_xpack:
|
||||
cd $(SERVER_PATH) \
|
||||
&& GOOS=linux GOARCH=amd64 $(GOBUILD) -tags=xpack -trimpath -ldflags '-s -w' -o $(BUILD_PATH)/$(APP_NAME) $(MAIN)
|
||||
|
||||
build_all_xpack: build_frontend build_backend_on_linux_xpack
|
||||
|
||||
build_on_local_xpack: clean_assets build_frontend build_backend_on_darwin_xpack upx_bin
|
||||
|
Loading…
Reference in New Issue
Block a user