github.com/neatlab/neatio@v1.7.3-0.20220425043230-d903e92fcc75/Makefile (about) 1 BUILD_FLAGS = -tags "$(BUILD_TAGS)" -ldflags " 2 3 build: 4 @ echo "Building Neatio Client..." 5 @ go build -o $(GOPATH)/bin/neatio ./chain/neatio/ 6 @ echo "Done building." 7 #.PHONY: neatio 8 neatio: 9 @ echo "Building Neatio Client..." 10 @ go build -o $(GOPATH)/bin/neatio ./chain/neatio/ 11 @ echo "Done building." 12 @ echo "Run ./neatio to launch the client. " 13 14 install: 15 @ echo "Installing..." 16 @ go install -mod=readonly $(BUILD_FLAGS) ./chain/neatio 17 @ echo "Install success."