home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / activex / inetsdk / samples / axscript / spruuids / src / makefile < prev    next >
Encoding:
Makefile  |  1996-06-22  |  2.5 KB  |  67 lines

  1. Proj = Spruuids
  2.  
  3. # BUGBUG due to missing DisplayAssert function debug builds can't be built in this
  4. # release
  5.  
  6. nodebug=1
  7.  
  8. # additional libs to link with
  9.  
  10. libs = uuid2.lib
  11.  
  12. cDefines = -IInc_Ext
  13.  
  14. # pull in the master SDK makefile that defines all of the macros
  15. #  and all of the build rules
  16.  
  17. !include <INetSDK.Mak>
  18.  
  19. All: $(ObjDir)\$(Proj).Exe
  20.  
  21. $(ObjDir)\Game.Exe : $(@R).Obj         $(@D)\App.Obj     $(@D)\GameOA.Obj  \
  22.                      $(@D)\Guids.Obj   $(@D)\MsgLoop.Obj $(@D)\OleAuto.Obj \
  23.                      $(@D)\Score.Obj   $(@D)\Spr.Obj     $(@D)\SprOA.Obj   \
  24.                      $(@D)\$(Proj).Res
  25.  
  26. $(ObjDir)\$(Proj).Exe: $(ObjDir)\Game.Exe
  27.  Copy $? $@
  28.  
  29. $(ObjDir)\$(Proj).h $(ObjDir)\$(Proj).Tlb: $(Proj).Odl
  30.   $(MkDest)
  31.   MkTypLib /DWIN32 -IInc_Ext /h $(ObjDir)\$(Proj).h /tlb $(ObjDir)\$(Proj).tlb $(Proj).Odl
  32.  
  33. $(ObjDir)\App.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h \
  34.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h     \
  35.         Helpers.h OleAuto.h App.h MsgLoop.h Game.h
  36.  
  37. $(ObjDir)\Game.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h                \
  38.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h OleAuto.h \
  39.         Game.h App.h Spr.h Score.h SpruuidP.h SpruuidP.hh SpruuidP.pix
  40.  
  41. $(ObjDir)\GameOA.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h    \
  42.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  43.         OleAuto.h Game.h App.h Spr.h Score.h DispIDs.h
  44.  
  45. $(ObjDir)\Guids.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h     \
  46.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  47.         OleAuto.h Game.h
  48.  
  49. $(ObjDir)\MsgLoop.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h   \
  50.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  51.         OleAuto.h MsgLoop.h
  52.  
  53. $(ObjDir)\Score.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h     \
  54.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  55.         OleAuto.h Score.h Spr.h Game.h
  56.  
  57. $(ObjDir)\Spr.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h       \
  58.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  59.         OleAuto.h Spr.h
  60.  
  61. $(ObjDir)\SprOA.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h     \
  62.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h \
  63.         OleAuto.h Spr.h DispIDs.h
  64.  
  65. $(ObjDir)\OleAuto.Obj : Main.h Inc_Ext/MultInfo.h Inc_Ext/VBSGuids.h   \
  66.         Inc_Ext/CompMgr.h Resource.h $(@D)\Spruuids.h Debug.h Helpers.h OleAuto.h
  67.