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.

35 lines
673 B

  1. !IF 0
  2. Copyright (C) Microsoft Corporation, 1998 - 1998
  3. Module Name:
  4. makefile.
  5. !ENDIF
  6. #
  7. # if building in a DDK environment
  8. #
  9. !IF defined(DDK_TARGET_OS)
  10. #
  11. # ensure that said build environment is at least Windows XP
  12. # 0x500 == Windows 2000
  13. # 0x501 == Windows XP
  14. # 0x502 == Windows .NET
  15. #
  16. ! IF defined(_NT_TARGET_VERSION) && $(_NT_TARGET_VERSION)>=0x501
  17. ! INCLUDE $(NTMAKEENV)\makefile.def
  18. ! ELSE
  19. ! message BUILDMSG: Warning : The sample "$(MAKEDIR)" is not valid for the current OS target.
  20. ! ENDIF
  21. !ELSE
  22. #
  23. # not a DDK environment, probably RAZZLE, so build
  24. #
  25. ! INCLUDE $(NTMAKEENV)\makefile.def
  26. !ENDIF