Added the DEV_BUILD variable to the makefile that automatically enables DEV_BRANCH and all the dev options.

This commit is contained in:
OBattler
2017-10-01 03:43:56 +02:00
parent e8899c30c1
commit 5cb4114701

View File

@@ -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.. #