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.

67 lines
1.5 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-2000 Microsoft Corporation
  9. #
  10. #--------------------------------------------------------------------------;
  11. #
  12. # sources
  13. #
  14. # Description:
  15. # This file tells "build" how to build the codec for NT.
  16. #
  17. #
  18. #==========================================================================;
  19. #
  20. # Define target file.
  21. #
  22. TARGETNAME=imaadp32
  23. DLLDEF =imaadpcm.def
  24. TARGETPATH=obj
  25. TARGETTYPE=DYNLINK
  26. TARGETEXT =acm
  27. UMTYPE =windows
  28. # @@BEGIN_DDKSPLIT
  29. #
  30. # Enable working set tuning - requires .prf file.
  31. #
  32. NTPROFILEINPUT=yes
  33. # @@END_DDKSPLIT
  34. #
  35. # define libs we need and where to find them
  36. #
  37. # Note: We must explicitly link to libc.lib for __int64 support on MIPS.
  38. #
  39. TARGETLIBS=$(SDK_LIB_PATH)\user32.lib \
  40. $(SDK_LIB_PATH)\gdi32.lib \
  41. $(SDK_LIB_PATH)\kernel32.lib \
  42. $(SDK_LIB_PATH)\advapi32.lib \
  43. $(SDK_LIB_PATH)\winmm.lib \
  44. $(SDK_LIB_PATH)\libc.lib
  45. INCLUDES=..\..\verinfo\usa
  46. !if $(FREEBUILD)
  47. ACM_DEBUG_DEFS=
  48. !else
  49. ACM_DEBUG_DEFS=-DRDEBUG
  50. !endif
  51. C_DEFINES=$(ACM_DEBUG_DEFS) -Dusa -DACM -DUNICODE -D_UNICODE
  52. SOURCES=codec.c \
  53. imaadpcm.c \
  54. debug.c \
  55. config.c \
  56. codec.rc
  57. # @@BEGIN_DDKSPLIT
  58. DLLBASE=0x66610000
  59. # @@END_DDKSPLIT