From e8e493d463a74e281c4c1b1ccce1cf6489c7596c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 30 May 2023 17:53:55 +0200 Subject: Makefile: add a comment --- Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 23de6d3..22da0ca 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,7 @@ test/all: test/local test/docker test/local: ./test/local/test.sh +# This is deliberately excluded from test/all, because it quite destructive. .PHONY: test/linux-home test/linux-home: ./test/linux-home/test.sh -- cgit v1.2.3 From 6220b6dcaa9b4776c6d1d7047aa7c87049f9bb03 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 30 Jun 2023 11:00:41 +0200 Subject: Makefile: move the prelude to prelude.mk --- Makefile | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 22da0ca..d713dd2 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +1,4 @@ -MAKEFLAGS += --no-builtin-rules --no-builtin-variables --warn-undefined-variables -unexport MAKEFLAGS -.DEFAULT_GOAL := all -.DELETE_ON_ERROR: -.SUFFIXES: -SHELL := bash -.SHELLFLAGS := -eu -o pipefail -c - -escape = $(subst ','\'',$(1)) - -define noexpand -ifeq ($$(origin $(1)),environment) - $(1) := $$(value $(1)) -endif -ifeq ($$(origin $(1)),environment override) - $(1) := $$(value $(1)) -endif -ifeq ($$(origin $(1)),command line) - override $(1) := $$(value $(1)) -endif -endef +include prelude.mk .PHONY: DO DO: -- cgit v1.2.3