Makefile Improvements

These changes improve the chances of a make operation actually failing when a nested error occurs.
This commit is contained in:
Wayne Warthen
2023-10-24 13:25:32 -07:00
parent 347a15a3b6
commit ef536750ea
4 changed files with 15 additions and 3 deletions

View File

@@ -1,6 +1,10 @@
#
# build the tools for linux and Darwin
#
.ONESHELL:
.SHELLFLAGS = -cex
UNAME := $(shell uname)
ifeq ($(UNAME), Linux)
SUFFIX=linux