mirror of
https://github.com/number571/blockchain.git
synced 2026-09-13 18:45:45 +05:00
6 lines
166 B
Makefile
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
|