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.

81 lines
1.6 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 1992, Microsoft Corporation.
  4. #
  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 = itest.dll
  13. TARGET_DESCRIPTION = "$(PLATFORM) $(BUILDTYPE) Proxy for IBalls ICube interfaces"
  14. COFFBASE = piballs
  15. RELEASE =
  16. ITFFILES =
  17. #
  18. # Source files. Remember to prefix each name with .\
  19. #
  20. IDLFILES = .\itest.idl
  21. CXXFILES = \
  22. .\itest_c.cxx \
  23. .\itest_s.cxx \
  24. .\itest_p.cxx
  25. CFILES = .\itest_i.c
  26. OBJFILES = \
  27. $(COMMON)\types\$(OBJDIR)\unknwn_i.obj \
  28. $(COMMON)\types\$(OBJDIR)\classf_i.obj \
  29. $(COMMON)\types\$(OBJDIR)\psfbuf_i.obj \
  30. $(COMMON)\types\$(OBJDIR)\proxyb_i.obj \
  31. $(COMMON)\types\$(OBJDIR)\stubb_i.obj \
  32. $(COMMON)\types\$(OBJDIR)\rchanb_i.obj \
  33. $(COMMON)\types\$(OBJDIR)\marshl_i.obj \
  34. $(COMMON)\types\$(OBJDIR)\stdrpc.obj \
  35. $(COMMON)\types\$(OBJDIR)\stdclass.obj \
  36. $(COMMON)\types\$(OBJDIR)\pch.obj
  37. RCFILES =
  38. CDLFILES =
  39. #
  40. # Libraries and other object files to link.
  41. #
  42. DEFFILE = prxydll.def
  43. LIBS = $(CAIROLIB) \
  44. $(RPCLIBS) \
  45. #
  46. # Precompiled headers.
  47. #
  48. PXXFILE = .\pch.cxx
  49. PFILE =
  50. CINC = -I. -DUNICODE
  51. CLEANFILES = $(HSOURCES) $(CFILES)
  52. CLEANTARGET = $(OBJDIR)
  53. 
  54.