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:
parent
f6872ffd7e
commit
b21994a225
10
makefile
10
makefile
|
@ -18,8 +18,10 @@ export
|
||||||
# Include Unicode support
|
# Include Unicode support
|
||||||
UNICODE = 1
|
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
|
USE_SEGOE = 1
|
||||||
|
endif
|
||||||
|
|
||||||
# Build A68K ASM 68000 core
|
# Build A68K ASM 68000 core
|
||||||
#BUILD_A68K = 1
|
#BUILD_A68K = 1
|
||||||
|
@ -42,8 +44,10 @@ INCLUDE_AVI_RECORDING = 1
|
||||||
# Include symbols and other debug information in the executable
|
# Include symbols and other debug information in the executable
|
||||||
#SYMBOL = 1
|
#SYMBOL = 1
|
||||||
|
|
||||||
# Include features for debugging drivers
|
# Include features for debugging drivers unless we are doing a release build
|
||||||
|
ifndef RELEASEBUILD
|
||||||
DEBUG = 1
|
DEBUG = 1
|
||||||
|
endif
|
||||||
|
|
||||||
# Include rom set verifying features (comment this for release builds)
|
# Include rom set verifying features (comment this for release builds)
|
||||||
#ROM_VERIFY = 1
|
#ROM_VERIFY = 1
|
||||||
|
@ -92,4 +96,4 @@ sdl: FORCE
|
||||||
vc: FORCE
|
vc: FORCE
|
||||||
@$(MAKE) -s -f makefile.vc
|
@$(MAKE) -s -f makefile.vc
|
||||||
|
|
||||||
FORCE:
|
FORCE:
|
||||||
|
|
Loading…
Reference in New Issue