1
0
mirror of https://github.com/cmur2/python-veml6070.git synced 2024-10-04 19:02:18 +02:00

module: improve Makefile's oneshell mode

This commit is contained in:
cn 2020-08-09 14:43:39 +02:00
parent c9a2bad682
commit b1fdcf35dd

View File

@ -2,8 +2,9 @@
# https://tech.davis-hansson.com/p/make/
SHELL := bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
.SHELLFLAGS := -eux -o pipefail -c
.DELETE_ON_ERROR:
.SILENT:
.DEFAULT_GOAL := all
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules