OSDN Git Service

feat: add processIssuing (#152)
[bytom/vapor.git] / Makefile
index 1345055..b81530d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -38,6 +38,10 @@ BYTOM_RELEASE64 := bytom-$(VERSION)-$(GOOS)_amd64
 
 all: test target release-all install
 
+fedd:
+       @echo "Building fedd to cmd/fedd/fedd"
+       @go build $(BUILD_FLAGS) -o cmd/fedd/fedd cmd/fedd/main.go
+
 bytomd:
        @echo "Building bytomd to cmd/bytomd/bytomd"
        @go build $(BUILD_FLAGS) -o cmd/bytomd/bytomd cmd/bytomd/main.go
@@ -133,6 +137,6 @@ benchmark:
 functional-tests:
        @go test -timeout=5m -tags="functional" ./test 
 
-ci: test functional-tests
+ci: test
 
 .PHONY: all target release-all clean test benchmark