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.

61 lines
1.4 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) 1993-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=msg711
  23. TARGETPATH=obj
  24. TARGETTYPE=DYNLINK
  25. TARGETEXT =acm
  26. UMTYPE =windows
  27. #
  28. # Enable working set tuning - requires .prf file.
  29. #
  30. NTPROFILEINPUT=yes
  31. #
  32. # define libs we need and where to find them
  33. #
  34. TARGETLIBS=$(SDK_LIB_PATH)\user32.lib \
  35. $(SDK_LIB_PATH)\gdi32.lib \
  36. $(SDK_LIB_PATH)\kernel32.lib \
  37. $(SDK_LIB_PATH)\advapi32.lib \
  38. $(SDK_LIB_PATH)\winmm.lib
  39. INCLUDES=..\..\verinfo\usa
  40. !if $(FREEBUILD)
  41. ACM_DEBUG_DEFS=
  42. !else
  43. ACM_DEBUG_DEFS=-DRDEBUG
  44. !endif
  45. C_DEFINES=$(ACM_DEBUG_DEFS) -DACM -DUNICODE -D_UNICODE
  46. MSC_WARNING_LEVEL=/W3 /WX
  47. SOURCES=init.c \
  48. codec.c \
  49. g711.c \
  50. debug.c \
  51. codec.rc
  52. DLLBASE=0x66630000