aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-08 12:30:53 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-08 12:30:53 +0100
commit36dd125dec4d0d450b812b5dd8c9f4532dc79549 (patch)
tree9d21923155b5f37f90a7f06158197770432edc90 /Makefile
parentworkflows/ci: respect .dockerignore (diff)
downloadmath-server-36dd125dec4d0d450b812b5dd8c9f4532dc79549.tar.gz
math-server-36dd125dec4d0d450b812b5dd8c9f4532dc79549.zip
Makefile: consistency
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 55d9328..89a4d5c 100644
--- a/Makefile
+++ b/Makefile
@@ -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 := math-server
TOOLSET ?= auto
CONFIGURATION ?= Debug