diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-07 17:23:30 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-07 17:23:30 +0100 |
commit | 10c9b58420ebcdf1d321f907998b8d80f533605d (patch) | |
tree | f07db440f718a456827e694cfafc40a4cd1a5e82 /Makefile | |
parent | make .gitattributes more consistent (diff) | |
download | fr24feed-10c9b58420ebcdf1d321f907998b8d80f533605d.tar.gz fr24feed-10c9b58420ebcdf1d321f907998b8d80f533605d.zip |
Makefile: consistentcy
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,6 +1,3 @@ -# Various one-liners which I'm too lazy to remember. -# Basically a collection of really small shell scripts. - MAKEFLAGS += --no-builtin-rules --no-builtin-variables --warn-undefined-variables unexport MAKEFLAGS .DEFAULT_GOAL := all @@ -9,9 +6,6 @@ unexport MAKEFLAGS SHELL := bash .SHELLFLAGS := -eu -o pipefail -c -.PHONY: DO -DO: - escape = $(subst ','\'',$(1)) define noexpand @@ -26,6 +20,9 @@ ifeq ($$(origin $(1)),command line) endif endef +.PHONY: DO +DO: + PROJECT := fr24feed # Use BuildKit, which is required: export DOCKER_BUILDKIT := 1 |