From e9497672435972a0e553defd6d546e3a78e847a8 Mon Sep 17 00:00:00 2001 From: MysterD Date: Thu, 3 Sep 2020 21:48:50 -0700 Subject: [PATCH] Add coop-specific define Added -DCOOP to identify that this is a coop build so that one patch can be applied to EX and/or COOP. They can choose to ifdef entity synchronization out. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 378f10a9..05d6da5f 100644 --- a/Makefile +++ b/Makefile @@ -553,6 +553,11 @@ else endif +# Identify that this is a coop build so that one patch can be applied to EX +# and/or COOP. They can choose to ifdef entity synchronization out. +CC_CHECK += -DCOOP +CFLAGS += -DCOOP + # Check for enhancement options # Check for debug option