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.

59 lines
1.5 KiB

  1. # sources
  2. # Author: Taylor Weiss (taylorw)
  3. # Date: 15 May 1999
  4. #
  5. # Describes the macros used for building using NT 'build' command
  6. #
  7. # Build asptxn.dll. COM server containing asp transaction support
  8. # components.
  9. #
  10. !include ..\..\..\place.inc
  11. TARGETNAME=asptxn
  12. TARGETPATH=obj
  13. TARGETTYPE=DYNLINK
  14. MSC_WARNING_LEVEL=/W3 /WX
  15. # Merge the proxy and stub into this dll
  16. C_DEFINES=$(C_DEFINES) -D_MERGE_PROXYSTUB
  17. DLLENTRY=_DllMainCRTStartup
  18. USE_MSVCRT=1
  19. USE_ATL=1
  20. ATL_VER=30
  21. TARGETLIBS=$(SDK_LIB_PATH)\kernel32.lib \
  22. $(SDK_LIB_PATH)\advapi32.lib \
  23. $(SDK_LIB_PATH)\user32.lib \
  24. $(SDK_LIB_PATH)\ole32.lib \
  25. $(SDK_LIB_PATH)\oleaut32.lib \
  26. $(SDK_LIB_PATH)\uuid.lib \
  27. $(SDK_LIB_PATH)\rpcrt4.lib \
  28. $(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib \
  29. $(SDK_LIB_PATH)\svcguid.lib \
  30. $(SDK_LIB_PATH)\comsvcs.lib \
  31. INCLUDES=.\; \
  32. ..\..\..\inc; \
  33. ..\asp51; \
  34. $(O);
  35. SOURCES=\
  36. stdafx.cpp \
  37. asptxn.cpp \
  38. dlldatax.cpp \
  39. txnobj.cpp \
  40. asptxn.rc \
  41. # Components built by makefile.inc
  42. NTTARGETFILE0= \
  43. $(O)\txnscrpt.tlb \
  44. $(O)\txnscrpt.h \
  45. $(O)\txnscrpt_i.c \
  46. $(O)\txnscrpt_p.c \
  47. $(O)\dlldata.c \