Makefile: stop at first syntax error

This flag prevents gcc from outputting a wall of text everytime you
forget a comma.
This commit is contained in:
Michele Guerini Rocco 2024-04-23 17:06:17 +02:00
parent baf53b932b
commit 60e30692cb
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450

View File

@ -77,6 +77,7 @@ DATE=$(shell LC_TIME=C date -d @$(SOURCE_DATE_EPOCH) '+%B %Y')
FC = gfortran
LD = gfortran
FFLAGS += -J$(OBJDIR) -I$(INCDIR) -ffree-line-length-none -fPIC -frecursive
FFLAGS += -Wfatal-errors
LDFLAGS += -L$(LIBDIR)
CPPFLAGS += -DREVISION=\"$(GIT_REV)$(GIT_DIRTY)\" -DPREFIX=\"$(PREFIX)\"