This will eventually be rolled into hush lightwalletd but this repo is separate for now
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
539 B

# Copyright (c) 2021 Jahway603 & The Hush Developers
# Released under the GPLv3
#
# HighLited (Hush) Makefile
# author: jahway603
#
PROJECT_NAME := "highlited"
GOCMD=go
GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
#.PHONY: build
# Get dependencies
dep:
@go get -v -d ./...
# Build binary for the x86 64-bit PC arch (amd64)
build:
./util/build.sh
# Build binary for ARM architecture (aarch64)
build-arm:
./util/build_arm.sh
clean:
@echo "Cleaning project $(PROJECT_NAME) files..."
rm -f $(PROJECT_NAME)
rm -rf /tmp/$(PROJECT_NAME)-*