diff --git a/src/dragonball/Makefile b/src/dragonball/Makefile index f98367f92c..90ab19fc07 100644 --- a/src/dragonball/Makefile +++ b/src/dragonball/Makefile @@ -2,6 +2,14 @@ # Copyright (c) 2019-2022 Ant Group. All rights reserved. # SPDX-License-Identifier: Apache-2.0 +include ../../utils.mk + +ifeq ($(ARCH), s390x) +default build check test clippy: + @echo "s390x not support currently" + exit 0 +else + default: build build: @@ -27,3 +35,5 @@ clean: test: @echo "INFO: skip testing dragonball" + +endif # ifeq ($(ARCH), s390x)