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

  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. !ifndef PRERELEASE_IDWLOG
  16. PRERELEASE_IDWLOG=0
  17. !endif
  18. !if $(PRERELEASE)
  19. C_DEFINES=$(C_DEFINES) -DPRERELEASE
  20. !endif
  21. !if $(PRERELEASE_IDWLOG)
  22. C_DEFINES=$(C_DEFINES) -DPRERELEASE_IDWLOG
  23. !endif