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.

71 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. Revision History:
  11. !ENDIF
  12. TARGETNAME=rpcrt4
  13. TARGETTYPE=DYNLINK
  14. TARGETPATH=obj
  15. DLLDEF=$(O)\rpcrt4.def
  16. MSC_WARNING_LEVEL=/WX /W3
  17. SOURCES= \
  18. ..\rpcrt4.rc
  19. RPCENV=$(RPCENV) -DNTENV -DWIN32RPC -DNTWIN32RPC
  20. C_DEFINES= $(C_DEFINES) $(RPCENV) $(RPCTARGETENV) /DMSWMSG -DEXPORT_RT -DEXPORT_NDR
  21. !if $(IA64) || $(AMD64)
  22. BUILD_NDR64=1
  23. !endif
  24. !ifdef BUILD_NDR64FAKE
  25. BUILD_NDR64=1
  26. !endif
  27. !ifdef BUILD_NDR64
  28. C_DEFINES= $(C_DEFINES) -DEXPORT_NDR64
  29. !endif
  30. DLLENTRY=InitializeDLL
  31. TARGETLIBS= $(TARGETLIBS) \
  32. $(SDK_LIB_PATH)\advapi32.lib \
  33. $(DS_LIB_PATH)\rsa32.lib \
  34. $(DS_LIB_PATH)\randlib.lib \
  35. RPCRUNTIME=..\..
  36. LINKLIBS= \
  37. $(LINKLIBS) \
  38. $(RPCRUNTIME)\mtrt\$(ALT_PROJECT)\$(O)\rpcmtrt.lib \
  39. $(PROJECT_ROOT)\lib\$(O)\RpcDbg.lib \
  40. $(RPCRUNTIME)\rtifs\$(O)\rtifs.lib \
  41. $(RPCRUNTIME)\..\ndrlib\daytona\$(O)\rpcndrp.lib \
  42. $(RPCRUNTIME)\..\ndr20\daytona\$(O)\rpcndr20.lib \
  43. $(RPCRUNTIME)\CharConv\$(CHARCONV_DIR)\$(O)\CharConv.lib \
  44. $(RPCRUNTIME)\trans\common\$(CHARCONV_DIR)\$(O)\rpctrans.lib \
  45. !ifdef BUILD_NDR64
  46. LINKLIBS=$(LINKLIBS) \
  47. $(RPCRUNTIME)\..\ndr64\ndr64\$(O)\rpcndr64.lib
  48. !endif