Dev build modules are now optionally disablable.
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
#
|
#
|
||||||
# Makefile for Win32 (MinGW32) environment.
|
# Makefile for Win32 (MinGW32) environment.
|
||||||
#
|
#
|
||||||
# Version: @(#)Makefile.mingw 1.0.106 2018/03/02
|
# Version: @(#)Makefile.mingw 1.0.107 2018/03/05
|
||||||
#
|
#
|
||||||
# Authors: Miran Grca, <mgrca8@gmail.com>
|
# Authors: Miran Grca, <mgrca8@gmail.com>
|
||||||
# Fred N. van Kempen, <decwiz@yahoo.com>
|
# Fred N. van Kempen, <decwiz@yahoo.com>
|
||||||
@@ -112,19 +112,45 @@ ifndef PROG
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(DEV_BUILD), y)
|
ifeq ($(DEV_BUILD), y)
|
||||||
DEBUG := y
|
ifneq ($(DEBUG), n)
|
||||||
DEV_BRANCH := y
|
DEBUG := y
|
||||||
AMD_K := y
|
endif
|
||||||
CRASHDUMP := y
|
ifneq ($(DEV_BRANCH), n)
|
||||||
GREENB := y
|
DEV_BRANCH := y
|
||||||
I686 := y
|
endif
|
||||||
LASERXT := y
|
ifneq ($(AMD_K), n)
|
||||||
NV_RIVA := y
|
AMD_K := y
|
||||||
PAS16 := y
|
endif
|
||||||
PORTABLE3 := y
|
ifneq ($(CRASHDUMP), n)
|
||||||
STEALTH32 := y
|
CRASHDUMP := y
|
||||||
VNC := y
|
endif
|
||||||
XL24 := y
|
ifneq ($(GREENB), n)
|
||||||
|
GREENB := y
|
||||||
|
endif
|
||||||
|
ifneq ($(I686), n)
|
||||||
|
I686 := y
|
||||||
|
endif
|
||||||
|
ifneq ($(LASERXT), n)
|
||||||
|
LASERXT := y
|
||||||
|
endif
|
||||||
|
ifneq ($(NV_RIVA), n)
|
||||||
|
NV_RIVA := y
|
||||||
|
endif
|
||||||
|
ifneq ($(PAS16), n)
|
||||||
|
PAS16 := y
|
||||||
|
endif
|
||||||
|
ifneq ($(PORTABLE3), n)
|
||||||
|
PORTABLE3 := y
|
||||||
|
endif
|
||||||
|
ifneq ($(STEALTH32), n)
|
||||||
|
STEALTH32 := y
|
||||||
|
endif
|
||||||
|
ifneq ($(VNC), n)
|
||||||
|
VNC := y
|
||||||
|
endif
|
||||||
|
ifneq ($(XL24), n)
|
||||||
|
XL24 := y
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# WxWidgets basic info. Extract using the config program.
|
# WxWidgets basic info. Extract using the config program.
|
||||||
|
|||||||
Reference in New Issue
Block a user