From b35b1fede2a8d43eaa10edee0ca0e4fa62eaa548 Mon Sep 17 00:00:00 2001 From: Oskar Thoren Date: Thu, 10 Jun 2021 22:37:35 +0800 Subject: [PATCH] Makefile; gitignore --- .gitignore | 2 ++ Makefile | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 Makefile diff --git a/.gitignore b/.gitignore index fa27e32..d120ef5 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,5 @@ bin/wakunode2 vendor/ .lock +build/ +*.lock diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c66cd73 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +.PHONY: all build + +build: + go build -o build/nwaku nwaku.go + +all: build