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.

94 lines
1.9 KiB

  1. #//+---------------------------------------------------------------------------
  2. #//
  3. #// Microsoft Windows
  4. #// Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. #//
  6. #// File: makefile
  7. #// Contents: makefile for 16 bit spdnd16 for OLETHUNK unit test.
  8. #//
  9. #// History: 06-16-94 terryru Created
  10. #//
  11. #//----------------------------------------------------------------------------
  12. !IFDEF USEBUILD
  13. # If using BUILD.EXE, edit .\sources. if you want to add a new source
  14. # file to this component. This file merely indirects to the real make file
  15. # that is shared by all the components of NT OS/2.
  16. !INCLUDE $(NTMAKEENV)\makefile.def
  17. !ELSE
  18. default: copy_bin
  19. TARGET = spdnd16.exe
  20. TARGETTYPE = EXE
  21. OLETHUNK = $(_NTDRIVE)$(_NTROOT)\private\cairole\olethunk
  22. RCINC=$(RCINC) -i..\ole2ui -i..\ole2ui\res\usa
  23. CDEFINES= -I..\ole32ui /GEs
  24. LFLAGS= /STACK:16384
  25. CPPFILES = \
  26. .\APP.cpp \
  27. .\DOC.cpp \
  28. .\DXFEROBJ.cpp \
  29. .\IAS.cpp \
  30. .\IDS.cpp \
  31. .\IDT.cpp \
  32. .\IOCS.cpp \
  33. .\PRE.cpp \
  34. .\SIMPDND.cpp \
  35. .\SITE.cpp \
  36. .\TESTS.cpp
  37. RCFILES = \
  38. .\spdnd16.rc
  39. LIBS = $(LIBS)\
  40. $(OLE16)\lib\ole2.lib \
  41. $(OLE16)\lib\storage.lib \
  42. $(OLE16)\lib\compobj.lib \
  43. $(OLE16)\lib\loleuic.lib \
  44. $(OLE16)\lib\shell.lib
  45. !include ..\makefile.inc
  46. copy_bin: all
  47. binplace $(OBJDIR)\spdnd16.exe
  48. binplace $(OBJDIR)\spdnd16.sym
  49. binplace $(OBJDIR)\spdnd16.map
  50. app.obj: APP.cpp
  51. doc.obj: DOC.cpp
  52. DXFEROBJ.obj: DXFEROBJ.cpp
  53. IAS.obj: IAS.cpp
  54. IDS.obj: IDS.cpp
  55. IDT.obj: IDT.cpp
  56. IOCS.obj: IOCS.cpp
  57. PRE.obj: PRE.cpp
  58. SIMPDND.obj: SIMPDND.cpp
  59. SITE.obj: SITE.cpp
  60. TESTS.obj: TESTS.cpp
  61. !ENDIF