Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
649 B

#
# This file is used to control build options that should only appear in
# internal releases, and NOT the beta or RTM releases. This controls
# features such as the GUI mode command prompt and the Win9x upgrade
# autostress option.
#
# To change, simply set PRERELEASE to 1 for private builds, or 0 for beta
# or RTM builds.
#
# **CHANGES HERE WILL REQUIRE A CLEAN BUILD OF THE SETUP, pnp and ntdll components **
#
!ifndef PRERELEASE
PRERELEASE=0
!endif
!ifndef PRERELEASE_IDWLOG
PRERELEASE_IDWLOG=0
!endif
!if $(PRERELEASE)
C_DEFINES=$(C_DEFINES) -DPRERELEASE
!endif
!if $(PRERELEASE_IDWLOG)
C_DEFINES=$(C_DEFINES) -DPRERELEASE_IDWLOG
!endif