Add -DXPBUILD and -DRELEASEBUILD

Doesn't affect any defaults so shouldn't cause anyone any problems. Just means you can do make xxxx -DRELEASEBUILD and/or make xxxx -DRELEASEBUILD -DXPBUILD
This commit is contained in:
tmaul 2019-07-25 11:14:40 +01:00 committed by GitHub
parent f6872ffd7e
commit b21994a225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,8 +18,10 @@ export
# Include Unicode support
UNICODE = 1
# Use Segoe Fonts (installed by default on Windows Vista and newer)
# Use Segoe Fonts (installed by default on Windows Vista and newer), unless we are doing a winxp build
ifndef XPBUILD
USE_SEGOE = 1
endif
# Build A68K ASM 68000 core
#BUILD_A68K = 1
@ -42,8 +44,10 @@ INCLUDE_AVI_RECORDING = 1
# Include symbols and other debug information in the executable
#SYMBOL = 1
# Include features for debugging drivers
# Include features for debugging drivers unless we are doing a release build
ifndef RELEASEBUILD
DEBUG = 1
endif
# Include rom set verifying features (comment this for release builds)
#ROM_VERIFY = 1
@ -92,4 +96,4 @@ sdl: FORCE
vc: FORCE
@$(MAKE) -s -f makefile.vc
FORCE:
FORCE: