From 5cb41147017951b7e60bfe3ad8c170bd6eb4d1d6 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 1 Oct 2017 03:43:56 +0200 Subject: [PATCH] Added the DEV_BUILD variable to the makefile that automatically enables DEV_BRANCH and all the dev options. --- src/Makefile.mingw | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/Makefile.mingw b/src/Makefile.mingw index b1f5ca1ce..82c68a108 100644 --- a/src/Makefile.mingw +++ b/src/Makefile.mingw @@ -59,6 +59,9 @@ endif ifndef USB USB := n endif +ifndef DEV_BUILD +DEV_BUILD := n +endif ifndef DEV_BRANCH DEV_BRANCH := n endif @@ -84,6 +87,13 @@ ifndef X64 X64 := n endif +ifeq ($(DEV_BUILD), y) + DEV_BRANCH := y + CIRRUS := y + NV_RIVA := y + PAS16 := y +endif + ######################################################################### # Nothing should need changing from here on.. #