Leaked source code of windows server 2003
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.

19 lines
538 B

  1. #
  2. # This file is used to control build options that should only appear in
  3. # internal releases, and NOT the beta or RTM releases. This controls
  4. # features such as the GUI mode command prompt and the Win9x upgrade
  5. # autostress option.
  6. #
  7. # To change, simply set PRERELEASE to 1 for private builds, or 0 for beta
  8. # or RTM builds.
  9. #
  10. # **CHANGES HERE WILL REQUIRE A CLEAN BUILD OF THE SETUP, pnp and ntdll components **
  11. #
  12. !ifndef PRERELEASE
  13. PRERELEASE=0
  14. !endif
  15. !if $(PRERELEASE)
  16. C_DEFINES=$(C_DEFINES) -DPRERELEASE
  17. !endif