shithub: cstory

Download patch

ref: 1d005fcb8b829c5de9d71d5d164281b0d9246215
parent: 8c6f1381f0fa08772fe0a21bd2e182ca836df2f8
parent: 2cc6d1d75805e715d7a314bb27ccf6c306a1aaec
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sat Nov 2 16:20:17 EDT 2019

Merge branch 'portable' into travisCIv2

--- a/Makefile
+++ b/Makefile
@@ -47,7 +47,7 @@
 	CXXFLAGS += -Wall -Wextra -pedantic
 endif
 
-ifeq ($(ALL_WARNINGS), 1)
+ifeq ($(WARNINGS_ALL), 1)
 	ifneq ($(findstring clang,$(CXX)),)
 		# Use clang-specific flag -Weverything
 		CXXFLAGS += -Weverything
@@ -57,7 +57,7 @@
 	endif
 endif
 
-ifeq ($(FATAL_WARNINGS), 1)
+ifeq ($(WARNINGS_FATAL), 1)
 	CXXFLAGS += -Werror
 endif
 
--