From 6f6a7fb8fb81599989f9b069601f950c8f311f6a Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 29 Feb 2020 19:59:22 +0300 Subject: Makefile: style guide --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index b357492..e88d810 100644 --- a/Makefile +++ b/Makefile @@ -7,19 +7,19 @@ SHELL := bash .DEFAULT_GOAL := all .SUFFIXES: -PROJECT = fr24feed +PROJECT := fr24feed # Use BuildKit, which is required: -export DOCKER_BUILDKIT = 1 +export DOCKER_BUILDKIT := 1 # Enable buildx support: -export DOCKER_CLI_EXPERIMENTAL = enabled +export DOCKER_CLI_EXPERIMENTAL := enabled # Enable BuildKit in docker-compose (requires 1.25.0 or higher): -export COMPOSE_DOCKER_CLI_BUILD = 1 +export COMPOSE_DOCKER_CLI_BUILD := 1 # Target platforms (used by buildx): -platforms = linux/i386,linux/amd64,linux/armhf +platforms := linux/i386,linux/amd64,linux/armhf # One of the latest (at the moment) Compose versions that supports BuildKit: -compose_version = 1.25.3 +compose_version := 1.25.3 # Docker Hub credentials: -DOCKER_USERNAME = egortensin +DOCKER_USERNAME := egortensin all: build -- cgit v1.2.3