Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.SHELLFLAGS := -eu$(if $(shell (set -o pipefail 2>/dev/null && echo yes)),o pipefail) $(.SHELLFLAGS)

ifeq ($(filter distclean clean,$(MAKECMDGOALS)),)
-include Makefile.config
endif
Expand Down
2 changes: 2 additions & 0 deletions doc/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.SHELLFLAGS := -eu$(if $(shell (set -o pipefail 2>/dev/null && echo yes)),o pipefail) $(.SHELLFLAGS)

-include ../Makefile.config

ifeq ($(DUNE),)
Expand Down
2 changes: 2 additions & 0 deletions release/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.SHELLFLAGS := -eu$(if $(shell (set -o pipefail 2>/dev/null && echo yes)),o pipefail) $(.SHELLFLAGS)

TAG = master
VERSION = $(shell git describe $(TAG))
OPAM_VERSION = $(subst -,~,$(VERSION))
Expand Down
2 changes: 2 additions & 0 deletions src_ext/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.SHELLFLAGS := -eu$(if $(shell (set -o pipefail 2>/dev/null && echo yes)),o pipefail) $(.SHELLFLAGS)

ifneq ($(wildcard ../Makefile.config)$(filter-out archives cache-archives,$(MAKECMDGOALS)),)
-include ../Makefile.config
endif
Expand Down
Loading