From 83e5ecfe366fc06e70fe61f2daed07b657925492 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 4 Mar 2018 05:03:27 -0600 Subject: [PATCH] Add BUILD_FINAL from Spearmint --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index b49e21ad..02517978 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,9 @@ endif ifndef BUILD_RENDERER_OPENGL2 BUILD_RENDERER_OPENGL2= endif +ifndef BUILD_FINAL + BUILD_FINAL =0 +endif ############################################################################# # @@ -306,6 +309,8 @@ ifneq ($(BUILD_CLIENT),0) endif endif +ifneq ($(BUILD_FINAL),1) + # Add git version info USE_GIT= ifeq ($(wildcard .git),.git) @@ -316,6 +321,8 @@ ifeq ($(wildcard .git),.git) endif endif +endif + ############################################################################# # SETUP AND BUILD -- LINUX