From 36e595ad5ee3c360d107b62114e0fda4ca10cd99 Mon Sep 17 00:00:00 2001 From: Teppei Fukuda Date: Wed, 17 Jul 2024 11:04:12 +0400 Subject: [PATCH] chore: configure directories in Makefile (#422) Signed-off-by: knqyf263 --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4b67396f..0582d63b 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,9 @@ SHELL=/bin/bash LDFLAGS=-ldflags "-s -w" -CACHE_DIR=cache -OUT_DIR=out -ASSET_DIR=assets + +CACHE_DIR ?= cache +OUT_DIR ?= out +ASSET_DIR ?= assets GOPATH=$(shell go env GOPATH) GOBIN=$(GOPATH)/bin