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 6a4e817 commit dca2e20Copy full SHA for dca2e20
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 ECC_MAIN_FILES=$(NAIVE_PATH)
+ECC_MAIN_FILES ?=$(DEFAULT)
18
19
-# Target to build skvs version
20
-skvs:
21
- $(MAKE) build ECC_MAIN_FILES=$(SKVS_PATH)
+include $(TOP)/ecc_go/build.mk
samples/chaincode/secret-keeper-go/main.go
0 commit comments