|
31 | 31 | # - peer-image[-clean] - ensures the peer-image is available[/cleaned] (for behave, etc)
|
32 | 32 | # - membersrvc-image[-clean] - ensures the membersrvc-image is available[/cleaned] (for behave, etc)
|
33 | 33 | # - protos - generate all protobuf artifacts based on .proto files
|
34 |
| -# - node-sdk - builds the node.js client sdk |
35 |
| -# - node-sdk-unit-tests - runs the node.js client sdk unit tests |
36 | 34 | # - clean - cleans the build area
|
37 | 35 | # - dist-clean - superset of 'clean' that also removes persistent state
|
38 | 36 |
|
@@ -63,7 +61,7 @@ K := $(foreach exec,$(EXECUTABLES),\
|
63 | 61 | $(if $(shell which $(exec)),some string,$(error "No $(exec) in PATH: Check dependencies")))
|
64 | 62 |
|
65 | 63 | # SUBDIRS are components that have their own Makefiles that we can invoke
|
66 |
| -SUBDIRS = gotools sdk/node |
| 64 | +SUBDIRS = gotools |
67 | 65 | SUBDIRS:=$(strip $(SUBDIRS))
|
68 | 66 |
|
69 | 67 | GOSHIM_DEPS = $(shell ./scripts/goListFiles.sh github.com/hyperledger/fabric/core/chaincode/shim | sort | uniq)
|
@@ -95,12 +93,7 @@ membersrvc-image: build/image/membersrvc/.dummy
|
95 | 93 | unit-test: peer-image gotools
|
96 | 94 | @./scripts/goUnitTests.sh $(DOCKER_TAG) "$(GO_LDFLAGS)"
|
97 | 95 |
|
98 |
| -node-sdk: sdk/node |
99 |
| - |
100 |
| -node-sdk-unit-tests: peer membersrvc |
101 |
| - cd sdk/node && $(MAKE) unit-tests |
102 |
| - |
103 |
| -unit-tests: unit-test node-sdk-unit-tests |
| 96 | +unit-tests: unit-test |
104 | 97 |
|
105 | 98 | .PHONY: images
|
106 | 99 | images: $(patsubst %,build/image/%/.dummy, $(IMAGES))
|
|
0 commit comments