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.

73 lines
1.5 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. !ENDIF
  11. !include ..\..\..\daytona.inc
  12. #
  13. # This is the name of the target built from the source files specified
  14. # below. The name should include neither the path nor the file extension.
  15. #
  16. TARGETNAME= oletest
  17. TARGETPATH= obj
  18. #
  19. # This specifies the type of the target, such as PROGRAM, DYNLINK, LIBRARY,
  20. # etc.
  21. #
  22. TARGETTYPE= DYNLINK
  23. DLLDEF= $(O)\oletest.def
  24. DLLBASE= @$(COFFBASE_TXT_FILE),usermode
  25. INCLUDES= $(INCLUDES)
  26. C_DEFINES= $(C_DEFINES)
  27. SOURCES= \
  28. ..\oletest.cxx \
  29. ..\testdllx.cxx \
  30. UMTYPE= console
  31. LINKLIBS= \
  32. ..\..\tests\daytona\$(O)\bmtests.lib \
  33. $(OLEDIR)\common\daytona\$(O)\common.lib \
  34. $(OLEUTESTDIR)\balls\oleprx32\uuid\daytona\$(O)\uuid.lib \
  35. $(SDK_LIB_PATH)\uuid.lib \
  36. $(SDK_LIB_PATH)\ole32.lib \
  37. $(SDK_LIB_PATH)\gdi32.lib \
  38. $(SDK_LIB_PATH)\kernel32.lib \
  39. $(SDK_LIB_PATH)\user32.lib \
  40. $(SDK_LIB_PATH)\advapi32.lib
  41. USE_MSVCRT= 1
  42. !IF $(386)
  43. NTTARGETFILE0=$(DLLDEF:*=i386)
  44. !ENDIF
  45. !IF $(MIPS)
  46. NTTARGETFILE0=$(DLLDEF:*=mips)
  47. !ENDIF
  48. !IF $(ALPHA)
  49. NTTARGETFILE0=$(DLLDEF:*=alpha)
  50. !ENDIF