From 68a9c216ab2e15dd79e3b708a6834145106e8e57 Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Mon, 6 Feb 2023 12:54:17 -0800 Subject: [PATCH] add PLATFORM var --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d9b89e2..5d19b44 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ DEFAULT_GOAL := $(or $(DEFAULT_GOAL),toolchain) ARCH := $(or $(ARCH),x86_64) TARGET := $(or $(TARGET),$(ARCH)) +PLATFORM := $(or $(PLATFORM),linux) NAME := $(shell basename $(shell git rev-parse --show-toplevel)) IMAGE := local/$(NAME):latest USER := $(shell id -u):$(shell id -g)