Makefile; gitignore

This commit is contained in:
Oskar Thoren 2021-06-10 22:37:35 +08:00
parent 34d23c1d22
commit b35b1fede2
No known key found for this signature in database
GPG Key ID: B2ECCFD3BC2EF77E
2 changed files with 8 additions and 0 deletions

2
.gitignore vendored
View File

@ -24,3 +24,5 @@ bin/wakunode2
vendor/
.lock
build/
*.lock

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
.PHONY: all build
build:
go build -o build/nwaku nwaku.go
all: build