blob: 0964bfeb0882bd67de18d760f1dcc7bfa9ce129d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Settings: Shell
SHELL = bash
.SHELLFLAGS = -eu -o pipefail -c
# Settings: Make
.SECONDEXPANSION:
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
# Special targets
.PHONY: .REBUILD_ALWAYS
.REBUILD_ALWAYS:
|