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.

50 lines
1.1 KiB

  1. #===========================================================================;
  2. #
  3. # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4. # KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5. # IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6. # PURPOSE.
  7. #
  8. # Copyright (c) 1992 - 1997 Microsoft Corporation. All Rights Reserved.
  9. #
  10. #---------------------------------------------------------------------------;
  11. #
  12. # QTZDK Project Makefile
  13. #
  14. # Targets are provided by QTZDK.MAK
  15. #
  16. # all Create executables (default).
  17. # clean Remove all files created by any goal.
  18. #
  19. #===========================================================================;
  20. # Location relative to root of SDK tree.
  21. !ifndef AXSDK
  22. AXSDK = ..\..\SDK
  23. !endif
  24. DISABLE_PCH = 1
  25. # Target
  26. TARGET_NAME = strmsamp
  27. TARGET_TYPE = PROGRAM
  28. # Libraries
  29. LINK_LIBS = ddraw.lib $(AXSDK)\lib\amstrmid.lib
  30. # Source files
  31. SRC_FILES = main.cpp
  32. INC_PATH = ..\idl
  33. # Type of executable
  34. EXE_TYPE = console
  35. # include ACTIVEX.MAK
  36. !include "$(AXSDK)\tools\activex.mak"