We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7028ec commit dbe4851Copy full SHA for dbe4851
samples/chaincode/secret-keeper-go/Makefile
@@ -4,18 +4,13 @@
4
# SPDX-License-Identifier: Apache-2.0
5
6
TOP = ../../..
7
-include $(TOP)/ecc_go/build.mk
8
9
CC_NAME ?= fpc-secret-keeper-go
10
11
# Define paths for cmd subdirectories
12
-NAIVE_PATH = cmd/naive/main.go
+DEFAULT= cmd/naive/main.go
13
SKVS_PATH = cmd/skvs/main.go
14
15
-# Target to build naive version
16
-naive:
17
- $(MAKE) build MAIN_GO_PATH=$(NAIVE_PATH)
+MAIN_GO_PATH ?=$(DEFAULT)
18
19
-# Target to build skvs version
20
-skvs:
21
- $(MAKE) build MAIN_GO_PATH=$(SKVS_PATH)
+include $(TOP)/ecc_go/build.mk
samples/chaincode/secret-keeper-go/main.go
0 commit comments