From 67c79bcde4d4a493b329078484655a09b9433513 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Mon, 18 Mar 2024 17:50:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=BF=98=E5=8E=9F=20Makefile=20?= =?UTF-8?q?=E5=86=85=E5=AE=B9=20(#4225)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Makefile b/Makefile index 973814af6..441f164d8 100644 --- a/Makefile +++ b/Makefile @@ -32,16 +32,3 @@ 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