From 03d072bfb6ef3ef97595ccf9b4e39da5f3aa203f Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Sun, 20 Oct 2024 16:44:35 -0400 Subject: [PATCH] style: use := everywhere in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eb94023..0a666f9 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: all build clean lint prepare-test test ci-test -BUILD_DIR = ./build -TMP_DIR = ./tmp +BUILD_DIR := ./build +TMP_DIR := ./tmp APPS := $(notdir $(wildcard ./cmd/*)) COMMIT_HASH := $(shell git rev-parse --short HEAD) DATE := $(shell date +"%Y%m%d-%H%M%S")