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.

39 lines
749 B

  1. !IF 0
  2. Copyright (C) Microsoft Corporation, 2002
  3. Module Name:
  4. makefile.
  5. !ENDIF
  6. #
  7. # DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source
  8. # file to this component. This file merely indirects to the real make file
  9. # that is shared by all the components of Windows NT
  10. #
  11. #
  12. # if building in a DDK environment
  13. #
  14. !IF defined(DDK_TARGET_OS)
  15. #
  16. # ensure that said build environment is at least Windows XP
  17. # 0x500 == Windows 2000
  18. # 0x501 == Windows XP
  19. # 0x502 == Windows .NET
  20. #
  21. !IF defined(_NT_TARGET_VERSION) && $(_NT_TARGET_VERSION)>=0x501
  22. !INCLUDE $(NTMAKEENV)\makefile.def
  23. !ENDIF
  24. !ELSE
  25. #
  26. # not a DDK environment, probably RAZZLE, so build
  27. #
  28. !INCLUDE $(NTMAKEENV)\makefile.def
  29. !ENDIF