diff --git a/samples/deployment/Makefile b/samples/deployment/Makefile new file mode 100644 index 000000000..b9aede46c --- /dev/null +++ b/samples/deployment/Makefile @@ -0,0 +1,12 @@ +# Copyright IBM Corp. All Rights Reserved. +# +# SPDX-License-Identifier: Apache-2.0 + +TOP = .. +include $(TOP)/build.mk + +DEPLOYMENT_SAMPLES = test-network + +build clean: + $(foreach DIR, $(DEPLOYMENT_SAMPLES), $(MAKE) -C $(DIR) $@ || exit;) +