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.

41 lines
891 B

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