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.

92 lines
2.1 KiB

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Donna Liu (DonnaLi) 19-Dec-1993
  12. !ENDIF
  13. MAJORCOMP = cairole
  14. MINORCOMP = perform
  15. #
  16. # This is the name of the target built from the source files specified
  17. # below. The name should include neither the path nor the file extension.
  18. #
  19. TARGETNAME= oletest
  20. TARGETPATH= obj
  21. #
  22. # This specifies the type of the target, such as PROGRAM, DYNLINK, LIBRARY,
  23. # etc.
  24. #
  25. TARGETTYPE= DYNLINK
  26. DLLDEF= $(O)\oletest.def
  27. DLLENTRY= DllEntryPoint
  28. DLLBASE=@$(COFFBASE_TXT_FILE),usermode
  29. INCLUDES= $(BASEDIR)\private\ole32\h;..\..\..\common
  30. INCLUDES= $(INCLUDES);$(BASEDIR)\private\oleutest\balls\oleprx32\chicago
  31. INCLUDES= $(INCLUDES);$(BASEDIR)\private\ole32\common\chicago;..
  32. INCLUDES= $(INCLUDES);..\..\tests
  33. C_DEFINES= \
  34. $(C_DEFINES) \
  35. -DFLAT \
  36. -DWIN32=200 \
  37. -D_CHICAGO_=200 \
  38. -DNOEXCEPTIONS \
  39. -DCAIROLE_DOWNLEVEL
  40. SOURCES= \
  41. ..\oletest.cxx \
  42. ..\testdllx.cxx \
  43. UMTYPE= console
  44. LINKLIBS= \
  45. ..\..\tests\chicago\$(O)\bmtests.lib \
  46. $(BASEDIR)\private\ole32\com\port\chicago\$(O)\port.lib \
  47. $(BASEDIR)\private\ole32\common\chicago\$(O)\common.lib \
  48. $(BASEDIR)\private\oleutest\balls\oleprx32\uuid\chicago\$(O)\uuid.lib \
  49. $(SDK_LIB_PATH)\uuid.lib \
  50. $(SDK_LIB_PATH)\ole32.lib \
  51. $(SDK_LIB_PATH)\gdi32.lib \
  52. $(SDK_LIB_PATH)\kernel32.lib \
  53. $(SDK_LIB_PATH)\user32.lib \
  54. $(SDK_LIB_PATH)\advapi32.lib
  55. USE_MSVCRT= 1
  56. !IF $(386)
  57. NTTARGETFILE0=$(DLLDEF:*=i386)
  58. !ENDIF
  59. !IF $(MIPS)
  60. NTTARGETFILE0=$(DLLDEF:*=mips)
  61. !ENDIF
  62. !IF $(ALPHA)
  63. NTTARGETFILE0=$(DLLDEF:*=alpha)
  64. !ENDIF