shithub: cstory

Download patch

ref: 2cc6d1d75805e715d7a314bb27ccf6c306a1aaec
parent: 9b55660c057749b1208894c67d7bf437b624bc32
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sat Nov 2 16:17:21 EDT 2019

Update warning option names in Makefile

--- 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
 
--