added Makefile

This commit is contained in:
jahway603
2021-10-23 23:36:19 -04:00
parent edac479e7d
commit 8fefcab08c
3 changed files with 23 additions and 3 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
# Copyright (c) 2021 Jahway603 & The Hush Developers
# Released under the GPLv3
#
# Hush Lightwalletd Makefile
# author: jahway603
#
PROJECT_NAME := "lightwalletd"
GOCMD=go
GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
#.PHONY: build
build:
# Build binary
./util/build.sh
clean:
@echo "clean project..."
rm -f $(PROJECT_NAME)