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
896 B

  1. !IF 0
  2. Copyright (C) Microsoft Corporation, 1996 - 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 .NET
  17. # 0x500 == Windows 2000
  18. # 0x501 == Windows XP
  19. #
  20. ! IF defined(_NT_TARGET_VERSION) && $(_NT_TARGET_VERSION)>=0x501 && "$(DDK_TARGET_OS)"=="WinNET"
  21. ! INCLUDE $(NTMAKEENV)\makefile.def
  22. ! ELSE
  23. ! message BUILDMSG: Warning : The sample "$(MAKEDIR)" is not valid for the current OS target.
  24. ! ENDIF
  25. !ELSE
  26. #
  27. # not a DDK environment, probably RAZZLE, so build
  28. #
  29. ! INCLUDE $(NTMAKEENV)\makefile.def
  30. !ENDIF