blockchain/Makefile
2020-07-12 16:41:10 -04:00

6 lines
166 B
Makefile

.PHONY: default build
default: build
build: node.go client.go serve.go values.go
go build -o node node.go serve.go values.go
go build -o client client.go values.go