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. ############################################################################
  2. #
  3. # Microsoft Windows
  4. # Copyright (C) Microsoft Corporation, 1992 - 1992.
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. #
  9. # Name of target. Include an extension (.dll, .lib, .exe)
  10. # If the target is part of the release, set RELEASE to 1.
  11. #
  12. TARGET = simpsvr.exe
  13. RELEASE = 0
  14. TARGET_DESCRIPTION = "$(PLATFORM) $(BUILDTYPE) Simple Server"
  15. #
  16. # Source files. Remember to prefix each name with .\
  17. #
  18. CFILES =
  19. CPPFILES = .\simpsvr.cpp \
  20. .\app.cpp \
  21. .\doc.cpp \
  22. .\icf.cpp \
  23. .\ido.cpp \
  24. .\iec.cpp \
  25. .\ioipao.cpp \
  26. .\ioipo.cpp \
  27. .\ioo.cpp \
  28. .\ips.cpp \
  29. .\obj.cpp \
  30. .\pre.cpp
  31. RCFILES = .\simpsvr.rc
  32. #
  33. # Libraries and other object files to link.
  34. #
  35. OBJFILES =
  36. LIBS = $(CAIROLE)\ilib\$(OBJDIR)\ole232.lib \
  37. $(CAIROLE)\ilib\$(OBJDIR)\storag32.lib \
  38. $(CAIROLE)\ilib\$(OBJDIR)\compob32.lib \
  39. ..\ole2ui\$(OBJDIR)\ole2uixd.lib
  40. DEFFILE = .\simpsvr.def
  41. #
  42. # Precompiled headers.
  43. #
  44. PXXFILE =
  45. PFILE =
  46. CINC = -I..\ole2ui -I..\ole2ui\resource\usa \
  47. -I..\ole2ui\resource\static
  48. !if "$(EXPORT)"=="0"
  49. CINC = $(CINC) -I$(CAIROLE)\h -I$(CAIROLE)\common
  50. !else
  51. CINC = $(CINC) -I$(CAIROLE)\h\export
  52. !endif
  53. CFLAGS=/D_DEBUG
  54. # For Chicago Build
  55. !if "$(OPSYS)"=="DOS"
  56. CFLAGS=$(CFLAGS) /D_INC_OLE
  57. !endif
  58.